You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jmeter.apache.org by pm...@apache.org on 2012/09/04 23:24:38 UTC

svn commit: r1380894 - /jmeter/trunk/test/src/org/apache/jmeter/protocol/http/sampler/NullURLConnection.java

Author: pmouawad
Date: Tue Sep  4 21:24:38 2012
New Revision: 1380894

URL: http://svn.apache.org/viewvc?rev=1380894&view=rev
Log:
Add final on field

Modified:
    jmeter/trunk/test/src/org/apache/jmeter/protocol/http/sampler/NullURLConnection.java

Modified: jmeter/trunk/test/src/org/apache/jmeter/protocol/http/sampler/NullURLConnection.java
URL: http://svn.apache.org/viewvc/jmeter/trunk/test/src/org/apache/jmeter/protocol/http/sampler/NullURLConnection.java?rev=1380894&r1=1380893&r2=1380894&view=diff
==============================================================================
--- jmeter/trunk/test/src/org/apache/jmeter/protocol/http/sampler/NullURLConnection.java (original)
+++ jmeter/trunk/test/src/org/apache/jmeter/protocol/http/sampler/NullURLConnection.java Tue Sep  4 21:24:38 2012
@@ -30,7 +30,7 @@ import java.util.Properties;
  */
 public final class NullURLConnection extends URLConnection {
 
-    private Properties data = new Properties();
+    private final Properties data = new Properties();
 
     public NullURLConnection() throws MalformedURLException {
         this(new URL("http://localhost"));