Skip to content

Commit 8134851

Browse files
committed
Polishing
1 parent a00e00b commit 8134851

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

org.springframework.context/src/main/java/org/springframework/cache/interceptor/CacheOperationSourcePointcut.java

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2002-2011 the original author or authors.
2+
* Copyright 2002-2012 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -47,8 +47,7 @@ public boolean equals(Object other) {
4747
return false;
4848
}
4949
CacheOperationSourcePointcut otherPc = (CacheOperationSourcePointcut) other;
50-
return ObjectUtils.nullSafeEquals(getCacheOperationSource(),
51-
otherPc.getCacheOperationSource());
50+
return ObjectUtils.nullSafeEquals(getCacheOperationSource(), otherPc.getCacheOperationSource());
5251
}
5352

5453
@Override
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
/**
3636
* @author Costin Leau
3737
*/
38-
public class AnnotationCacheOperationSourceTest {
38+
public class AnnotationCacheOperationSourceTests {
3939

4040
private AnnotationCacheOperationSource source = new AnnotationCacheOperationSource();
4141

0 commit comments

Comments
 (0)