fix spacing
diff --git a/src/javax/persistence/Cache.java b/src/javax/persistence/Cache.java
index 082f645..061664f 100644
--- a/src/javax/persistence/Cache.java
+++ b/src/javax/persistence/Cache.java
@@ -5,21 +5,21 @@
* no effect, except for contains, which returns false.
*/
public interface Cache {
-/**
-* Whether the cache contains data for the given entity.
-*/
-public boolean contains(Class cls, Object primaryKey);
-/**
-* Remove the data for the given entity from the cache.
-*/
-public void evict(Class cls, Object primaryKey);
-/**
-* Remove the data for entities of the specified class (and its
-subclasses) from the cache.
-*/
-public void evict(Class cls);
-/**
-* Clear the cache.
-*/
-public void evictAll();
+ /**
+ * Whether the cache contains data for the given entity.
+ */
+ public boolean contains(Class cls, Object primaryKey);
+ /**
+ * Remove the data for the given entity from the cache.
+ */
+ public void evict(Class cls, Object primaryKey);
+ /**
+ * Remove the data for entities of the specified class (and its
+ subclasses) from the cache.
+ */
+ public void evict(Class cls);
+ /**
+ * Clear the cache.
+ */
+ public void evictAll();
}
\ No newline at end of file