You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by se...@apache.org on 2010/01/27 23:05:50 UTC

svn commit: r903857 - /commons/proper/net/branches/NET_2_0/src/test/java/org/apache/commons/net/tftp/TFTPTest.java

Author: sebb
Date: Wed Jan 27 22:05:50 2010
New Revision: 903857

URL: http://svn.apache.org/viewvc?rev=903857&view=rev
Log:
make private & final where possible

Modified:
    commons/proper/net/branches/NET_2_0/src/test/java/org/apache/commons/net/tftp/TFTPTest.java

Modified: commons/proper/net/branches/NET_2_0/src/test/java/org/apache/commons/net/tftp/TFTPTest.java
URL: http://svn.apache.org/viewvc/commons/proper/net/branches/NET_2_0/src/test/java/org/apache/commons/net/tftp/TFTPTest.java?rev=903857&r1=903856&r2=903857&view=diff
==============================================================================
--- commons/proper/net/branches/NET_2_0/src/test/java/org/apache/commons/net/tftp/TFTPTest.java (original)
+++ commons/proper/net/branches/NET_2_0/src/test/java/org/apache/commons/net/tftp/TFTPTest.java Wed Jan 27 22:05:50 2010
@@ -38,10 +38,10 @@
  */
 public class TFTPTest extends TestCase
 {
-    static TFTPServer tftpS;
-    static File serverDirectory = new File(System.getProperty("java.io.tmpdir"));
-    static String filePrefix = "tftp-";
-    static File[] files = new File[8];
+    private static TFTPServer tftpS;
+    private static final File serverDirectory = new File(System.getProperty("java.io.tmpdir"));
+    private static final String filePrefix = "tftp-";
+    private static final File[] files = new File[8];
 
     static int testsLeftToRun = 6;