Author: jcarman
Date: Tue Jun 12 03:00:33 2012
New Revision: 1349101

URL: http://svn.apache.org/viewvc?rev=1349101&view=rev
Log:
Making inner class which has only private constructors final (checkstyle rule 
reported by Sonar).

Modified:
    
commons/proper/proxy/branches/version-2.0-work/core/src/main/java/org/apache/commons/proxy2/invoker/recorder/InvocationRecorder.java

Modified: 
commons/proper/proxy/branches/version-2.0-work/core/src/main/java/org/apache/commons/proxy2/invoker/recorder/InvocationRecorder.java
URL: 
http://svn.apache.org/viewvc/commons/proper/proxy/branches/version-2.0-work/core/src/main/java/org/apache/commons/proxy2/invoker/recorder/InvocationRecorder.java?rev=1349101&r1=1349100&r2=1349101&view=diff
==============================================================================
--- 
commons/proper/proxy/branches/version-2.0-work/core/src/main/java/org/apache/commons/proxy2/invoker/recorder/InvocationRecorder.java
 (original)
+++ 
commons/proper/proxy/branches/version-2.0-work/core/src/main/java/org/apache/commons/proxy2/invoker/recorder/InvocationRecorder.java
 Tue Jun 12 03:00:33 2012
@@ -84,7 +84,7 @@ public class InvocationRecorder
         return ProxyUtils.nullValue(type);
     }
 
-    private class InvocationRecorderInvoker implements Invoker
+    private final class InvocationRecorderInvoker implements Invoker
     {
         /** Serialization version */
         private static final long serialVersionUID = 1L;


Reply via email to