You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jmeter.apache.org by fs...@apache.org on 2016/01/31 15:27:51 UTC

svn commit: r1727821 - /jmeter/trunk/src/protocol/ldap/org/apache/jmeter/protocol/ldap/sampler/LDAPExtSampler.java

Author: fschumacher
Date: Sun Jan 31 14:27:50 2016
New Revision: 1727821

URL: http://svn.apache.org/viewvc?rev=1727821&view=rev
Log:
Space police.
Part of patch by Benoit Wiart.

Bugzilla Id: 58949

Modified:
    jmeter/trunk/src/protocol/ldap/org/apache/jmeter/protocol/ldap/sampler/LDAPExtSampler.java

Modified: jmeter/trunk/src/protocol/ldap/org/apache/jmeter/protocol/ldap/sampler/LDAPExtSampler.java
URL: http://svn.apache.org/viewvc/jmeter/trunk/src/protocol/ldap/org/apache/jmeter/protocol/ldap/sampler/LDAPExtSampler.java?rev=1727821&r1=1727820&r2=1727821&view=diff
==============================================================================
--- jmeter/trunk/src/protocol/ldap/org/apache/jmeter/protocol/ldap/sampler/LDAPExtSampler.java (original)
+++ jmeter/trunk/src/protocol/ldap/org/apache/jmeter/protocol/ldap/sampler/LDAPExtSampler.java Sun Jan 31 14:27:50 2016
@@ -192,7 +192,6 @@ public class LDAPExtSampler extends Abst
      *
      * @return The username
      **************************************************************************/
-
     public String getUserDN() {
         return getPropertyAsString(USERDN);
     }
@@ -203,7 +202,6 @@ public class LDAPExtSampler extends Abst
      * @param newUserDN
      *            distinguished name of the user
      **************************************************************************/
-
     public void setUserDN(String newUserDN) {
         setProperty(new StringProperty(USERDN, newUserDN));
     }
@@ -213,7 +211,6 @@ public class LDAPExtSampler extends Abst
      *
      * @return The password
      **************************************************************************/
-
     public String getUserPw() {
         return getPropertyAsString(USERPW);
     }
@@ -224,7 +221,6 @@ public class LDAPExtSampler extends Abst
      * @param newUserPw
      *            password of the user
      **************************************************************************/
-
     public void setUserPw(String newUserPw) {
         setProperty(new StringProperty(USERPW, newUserPw));
     }
@@ -264,7 +260,6 @@ public class LDAPExtSampler extends Abst
      *
      * @return The Port value
      **************************************************************************/
-
     public String getPort() {
         return getPropertyAsString(PORT);
     }