Skip to content

Commit b1a400e

Browse files
committed
style: whitespace missed previously
1 parent b85315b commit b1a400e

File tree

6 files changed

+208
-208
lines changed

6 files changed

+208
-208
lines changed

grails-cache/src/ast/groovy/grails/plugin/cache/CacheEvict.java

Lines changed: 23 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -41,30 +41,30 @@
4141
@GroovyASTTransformationClass("org.grails.plugin.cache.compiler.CacheEvictTransformation")
4242
public @interface CacheEvict {
4343

44-
/**
45-
* Qualifier value for the specified cached operation.
46-
* <p>May be used to determine the target cache (or caches), matching the qualifier
47-
* value.
48-
*/
49-
String[] value();
44+
/**
45+
* Qualifier value for the specified cached operation.
46+
* <p>May be used to determine the target cache (or caches), matching the qualifier
47+
* value.
48+
*/
49+
String[] value();
5050

51-
/**
52-
* A closure for computing the key dynamically.
53-
* <p>Default is null, meaning all method parameters are considered as a key.
54-
*/
55-
Class[] key() default {};
51+
/**
52+
* A closure for computing the key dynamically.
53+
* <p>Default is null, meaning all method parameters are considered as a key.
54+
*/
55+
Class[] key() default {};
5656

57-
/**
58-
* A closure used for conditioning the method caching.
59-
* <p>Default is null, meaning the method is always cached.
60-
*/
61-
Class[] condition() default {};
57+
/**
58+
* A closure used for conditioning the method caching.
59+
* <p>Default is null, meaning the method is always cached.
60+
*/
61+
Class[] condition() default {};
6262

63-
/**
64-
* Whether or not all the entries inside the cache(s) are removed or not. By
65-
* default, only the value under the associated key is removed.
66-
* <p>Note that specifying setting this parameter to true and specifying a
67-
* CacheKey is not allowed.
68-
*/
69-
boolean allEntries() default false;
63+
/**
64+
* Whether or not all the entries inside the cache(s) are removed or not. By
65+
* default, only the value under the associated key is removed.
66+
* <p>Note that specifying setting this parameter to true and specifying a
67+
* CacheKey is not allowed.
68+
*/
69+
boolean allEntries() default false;
7070
}

grails-cache/src/ast/groovy/grails/plugin/cache/CachePut.java

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -43,16 +43,16 @@
4343
@GroovyASTTransformationClass("org.grails.plugin.cache.compiler.CachePutTransformation")
4444
public @interface CachePut {
4545

46-
/**
47-
* Name of the caches in which the update takes place.
48-
* <p>May be used to determine the target cache (or caches), matching the
49-
* qualifier value.
50-
*/
51-
String[] value();
46+
/**
47+
* Name of the caches in which the update takes place.
48+
* <p>May be used to determine the target cache (or caches), matching the
49+
* qualifier value.
50+
*/
51+
String[] value();
5252

53-
/**
54-
* A closure for computing the key dynamically.
55-
* <p>Default is null, meaning all method parameters are considered as a key.
56-
*/
57-
Class[] key() default {};
53+
/**
54+
* A closure for computing the key dynamically.
55+
* <p>Default is null, meaning all method parameters are considered as a key.
56+
*/
57+
Class[] key() default {};
5858
}

0 commit comments

Comments
 (0)