Author: mgrigorov
Date: Wed Sep 14 12:03:03 2011
New Revision: 1170552

URL: http://svn.apache.org/viewvc?rev=1170552&view=rev
Log:
Optimize imports.
Format the comments.

No functional changes.


Modified:
    
wicket/trunk/wicket-core/src/main/java/org/apache/wicket/request/resource/caching/IStaticCacheableResource.java

Modified: 
wicket/trunk/wicket-core/src/main/java/org/apache/wicket/request/resource/caching/IStaticCacheableResource.java
URL: 
http://svn.apache.org/viewvc/wicket/trunk/wicket-core/src/main/java/org/apache/wicket/request/resource/caching/IStaticCacheableResource.java?rev=1170552&r1=1170551&r2=1170552&view=diff
==============================================================================
--- 
wicket/trunk/wicket-core/src/main/java/org/apache/wicket/request/resource/caching/IStaticCacheableResource.java
 (original)
+++ 
wicket/trunk/wicket-core/src/main/java/org/apache/wicket/request/resource/caching/IStaticCacheableResource.java
 Wed Sep 14 12:03:03 2011
@@ -20,11 +20,10 @@ import java.io.Serializable;
 
 import org.apache.wicket.request.resource.IResource;
 import org.apache.wicket.util.resource.IResourceStream;
-import org.apache.wicket.util.resource.ResourceStreamNotFoundException;
 
 /**
- * static resource which does not change for the lifetime of the application 
- * and should be considered a candidate for long-term caching. 
+ * static resource which does not change for the lifetime of the application 
and should be
+ * considered a candidate for long-term caching.
  * 
  * @author Peter Ertl
  * @since 1.5
@@ -32,17 +31,17 @@ import org.apache.wicket.util.resource.R
 public interface IStaticCacheableResource extends IResource
 {
        /**
-        * get unique caching key for the resource stream produced 
-        * by {@link #getCacheableResourceStream()}
+        * get unique caching key for the resource stream produced by
+        * {@link #getCacheableResourceStream()}
         * 
-        * @return serializable key with properly 
-        * supports {@link #equals(Object)} and {@link #hashCode()}
+        * @return serializable key with properly supports {@link 
#equals(Object)} and
+        *         {@link #hashCode()}
         */
        Serializable getCacheKey();
 
        /**
-        * get static resource stream which will be unique to the 
-        * related caching key {@link #getCacheKey()}
+        * get static resource stream which will be unique to the related 
caching key
+        * {@link #getCacheKey()}
         * 
         * @return stream or <code>null</code> if no stream could be found
         */


Reply via email to