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 22:24:12 UTC

svn commit: r1380852 - /jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/control/Authorization.java

Author: pmouawad
Date: Tue Sep  4 20:24:11 2012
New Revision: 1380852

URL: http://svn.apache.org/viewvc?rev=1380852&view=rev
Log:
Remove useless synchronized

Modified:
    jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/control/Authorization.java

Modified: jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/control/Authorization.java
URL: http://svn.apache.org/viewvc/jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/control/Authorization.java?rev=1380852&r1=1380851&r2=1380852&view=diff
==============================================================================
--- jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/control/Authorization.java (original)
+++ jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/control/Authorization.java Tue Sep  4 20:24:11 2012
@@ -66,43 +66,43 @@ public class Authorization extends Abstr
     public void addConfigElement(ConfigElement config) {
     }
 
-    public synchronized String getURL() {
+    public String getURL() {
         return getPropertyAsString(URL);
     }
 
-    public synchronized void setURL(String url) {
+    public void setURL(String url) {
         setProperty(URL, url);
     }
 
-    public synchronized String getUser() {
+    public String getUser() {
         return getPropertyAsString(USERNAME);
     }
 
-    public synchronized void setUser(String user) {
+    public void setUser(String user) {
         setProperty(USERNAME, user);
     }
 
-    public synchronized String getPass() {
+    public String getPass() {
         return getPropertyAsString(PASSWORD);
     }
 
-    public synchronized void setPass(String pass) {
+    public void setPass(String pass) {
         setProperty(PASSWORD, pass);
     }
 
-    public synchronized String getDomain() {
+    public String getDomain() {
         return getPropertyAsString(DOMAIN);
     }
 
-    public synchronized void setDomain(String domain) {
+    public void setDomain(String domain) {
         setProperty(DOMAIN, domain);
     }
 
-    public synchronized String getRealm() {
+    public String getRealm() {
         return getPropertyAsString(REALM);
     }
 
-    public synchronized void setRealm(String realm) {
+    public void setRealm(String realm) {
         setProperty(REALM, realm);
     }