From 07d2b8c01531db4b79c56d36997edca679466a2b Mon Sep 17 00:00:00 2001 From: Mark Paluch Date: Wed, 19 Jun 2019 10:39:40 +0200 Subject: [PATCH] DATAKV-268 - Polishing. Original Pull Request: #46 --- .../data/keyvalue/annotation/KeySpace.java | 14 +++++--------- 1 file changed, 5 insertions(+), 9 deletions(-) diff --git a/src/main/java/org/springframework/data/keyvalue/annotation/KeySpace.java b/src/main/java/org/springframework/data/keyvalue/annotation/KeySpace.java index deadaf7..7d97be8 100644 --- a/src/main/java/org/springframework/data/keyvalue/annotation/KeySpace.java +++ b/src/main/java/org/springframework/data/keyvalue/annotation/KeySpace.java @@ -29,33 +29,29 @@ import org.springframework.data.annotation.Persistent; * entity should reside in. If present the value will be picked up for resolving the keyspace. The {@link #value()} * attribute supports SpEL expressions to dynamically resolve the keyspace based on a per-operation basis. * - *
- * 
+ * 
  * @Persistent
  * @Retention(RetentionPolicy.RUNTIME)
  * @Target({ ElementType.TYPE })
  * static @interface CacheCentricAnnotation {
  *
- *   @AliasFor(annotation = KeySpace.class, attribute = "value")
- *   String cacheRegion() default "";
+ * 	@AliasFor(annotation = KeySpace.class, attribute = "value")
+ * 	String cacheRegion() default "";
  * }
  *
  * @CacheCentricAnnotation(cacheRegion = "customers")
  * class Customer {
- *   //...
+ * 	// ...
  * }
- * 
  * 
* * Can also be directly used on types to indicate the keyspace. * - *
- * 
+ * 
  * @KeySpace("persons")
  * public class Foo {
  *
  * }
- * 
  * 
* * @author Christoph Strobl