Author: sebb
Date: Mon Aug 24 22:34:46 2009
New Revision: 807416

URL: http://svn.apache.org/viewvc?rev=807416&view=rev
Log:
Make private fields final

Modified:
    jakarta/jmeter/trunk/src/core/org/apache/jmeter/ProxyAuthenticator.java

Modified: 
jakarta/jmeter/trunk/src/core/org/apache/jmeter/ProxyAuthenticator.java
URL: 
http://svn.apache.org/viewvc/jakarta/jmeter/trunk/src/core/org/apache/jmeter/ProxyAuthenticator.java?rev=807416&r1=807415&r2=807416&view=diff
==============================================================================
--- jakarta/jmeter/trunk/src/core/org/apache/jmeter/ProxyAuthenticator.java 
(original)
+++ jakarta/jmeter/trunk/src/core/org/apache/jmeter/ProxyAuthenticator.java Mon 
Aug 24 22:34:46 2009
@@ -29,10 +29,10 @@
  */
 public class ProxyAuthenticator extends Authenticator {
     /** The username to authenticate with. */
-    private String userName;
+    private final String userName;
 
     /** The password to authenticate with. */
-    private char password[];
+    private final char password[];
 
     /**
      * Create a ProxyAuthenticator with the specified username and password.



---------------------------------------------------------------------
To unsubscribe, e-mail: jmeter-dev-unsubscr...@jakarta.apache.org
For additional commands, e-mail: jmeter-dev-h...@jakarta.apache.org

Reply via email to