Fix various compiler warnings in spring-context

All warning types other than [deprecation] and [unchecked] are now
fixed in spring-context/src/test
This commit is contained in:
Chris Beams
2012-12-19 16:03:11 +01:00
parent 4c7cafbde6
commit 40357be72b
4 changed files with 5 additions and 9 deletions

View File

@@ -40,8 +40,7 @@ public class ServiceInvocationCounter {
@Before("serviceExecution()")
public void countUse() {
this.useCount++;
this.threadLocalCount.set(this.useCount);
System.out.println("");
threadLocalCount.set(this.useCount);
}
public int getCount() {