You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2014/09/27 17:16:26 UTC

svn commit: r1627978 - /commons/proper/bcel/trunk/src/test/java/org/apache/bcel/AbstractTestCase.java

Author: ggregory
Date: Sat Sep 27 15:16:26 2014
New Revision: 1627978

URL: http://svn.apache.org/r1627978
Log:
Add final modifier to private fields.

Modified:
    commons/proper/bcel/trunk/src/test/java/org/apache/bcel/AbstractTestCase.java

Modified: commons/proper/bcel/trunk/src/test/java/org/apache/bcel/AbstractTestCase.java
URL: http://svn.apache.org/viewvc/commons/proper/bcel/trunk/src/test/java/org/apache/bcel/AbstractTestCase.java?rev=1627978&r1=1627977&r2=1627978&view=diff
==============================================================================
--- commons/proper/bcel/trunk/src/test/java/org/apache/bcel/AbstractTestCase.java (original)
+++ commons/proper/bcel/trunk/src/test/java/org/apache/bcel/AbstractTestCase.java Sat Sep 27 15:16:26 2014
@@ -39,7 +39,7 @@ import org.apache.bcel.util.SyntheticRep
 
 public abstract class AbstractTestCase extends TestCase
 {
-    private boolean verbose = false;
+    private final boolean verbose = false;
 
     protected File createTestdataFile(String name)
     {