Author: sebb
Date: Fri Dec 7 08:33:13 2007
New Revision: 602143
URL: http://svn.apache.org/viewvc?rev=602143&view=rev
Log:
Remove unnecessary overrides of setName() and getName()
Modified:
jakarta/jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/control/AuthManager.java
Modified:
jakarta/jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/control/AuthManager.java
URL:
http://svn.apache.org/viewvc/jakarta/jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/control/AuthManager.java?rev=602143&r1=602142&r2=602143&view=diff
==============================================================================
---
jakarta/jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/control/AuthManager.java
(original)
+++
jakarta/jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/control/AuthManager.java
Fri Dec 7 08:33:13 2007
@@ -34,7 +34,6 @@
import org.apache.jmeter.config.ConfigElement;
import org.apache.jmeter.config.ConfigTestElement;
-import org.apache.jmeter.testelement.TestElement;
import org.apache.jmeter.testelement.property.CollectionProperty;
import org.apache.jmeter.testelement.property.PropertyIterator;
import org.apache.jmeter.testelement.property.TestElementProperty;
@@ -49,7 +48,6 @@
* format of the authorization file is: URL user pass where URL is an HTTP URL,
* user a username to use and pass the appropriate password.
*
- * author <a href="mailto:[EMAIL PROTECTED]">Raphael Luta</a>
*/
public class AuthManager extends ConfigTestElement implements ConfigElement,
Serializable {
private static final Logger log = LoggingManager.getLoggerForClass();
@@ -97,10 +95,6 @@
}
}
- public void setName(String newName) {
- setProperty(TestElement.NAME, newName);
- }
-
public CollectionProperty getAuthObjects() {
return (CollectionProperty) getProperty(AUTH_LIST);
}
@@ -197,10 +191,6 @@
log.debug("Did not match");
}
return null;
- }
-
- public String getName() {
- return getPropertyAsString(TestElement.NAME);
}
public void addConfigElement(ConfigElement config) {
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]