diff options
author | Robert Greig <rgreig@apache.org> | 2007-05-02 16:47:36 +0000 |
---|---|---|
committer | Robert Greig <rgreig@apache.org> | 2007-05-02 16:47:36 +0000 |
commit | 4fa14823a4110d82c26edcc1aaf0cd9d325a9dd4 (patch) | |
tree | 5f36c19401ca1ad2cdf3643770583408344ac2b2 /java/client-java14/src | |
parent | ed92de65d6ca576bbb9b5f9a1741d60a08ce7a7a (diff) | |
download | qpid-python-4fa14823a4110d82c26edcc1aaf0cd9d325a9dd4.tar.gz |
Removed accidentally included copyright and author tags.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@534539 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'java/client-java14/src')
-rw-r--r-- | java/client-java14/src/main/java/org/apache/qpid/sasl/CramMD5Client.java | 2 | ||||
-rw-r--r-- | java/client-java14/src/main/java/org/apache/qpid/sasl/PlainClient.java | 4 |
2 files changed, 1 insertions, 5 deletions
diff --git a/java/client-java14/src/main/java/org/apache/qpid/sasl/CramMD5Client.java b/java/client-java14/src/main/java/org/apache/qpid/sasl/CramMD5Client.java index c771df458e..7d15f03329 100644 --- a/java/client-java14/src/main/java/org/apache/qpid/sasl/CramMD5Client.java +++ b/java/client-java14/src/main/java/org/apache/qpid/sasl/CramMD5Client.java @@ -35,8 +35,6 @@ import javax.security.sasl.SaslException; * <tr><td> Concatenate the user id and password hashed by a challenge string as the challenge response.
* <tr><td> Ensure password is wiped once a challenge has been processed.
* </table>
- *
- * @author Rupert Smith
*/
public class CramMD5Client implements SaslClient
{
diff --git a/java/client-java14/src/main/java/org/apache/qpid/sasl/PlainClient.java b/java/client-java14/src/main/java/org/apache/qpid/sasl/PlainClient.java index 67d00fd7d4..97e607c57e 100644 --- a/java/client-java14/src/main/java/org/apache/qpid/sasl/PlainClient.java +++ b/java/client-java14/src/main/java/org/apache/qpid/sasl/PlainClient.java @@ -32,8 +32,6 @@ import javax.security.sasl.SaslException; * <tr><td> Concatenate the user id and password in plain text as the challenge respose.
* <tr><td> Ensure password is wiped once a challenge has been processed.
* </table>
- *
- * @author Rupert Smith
*/
public class PlainClient implements SaslClient
{
@@ -124,7 +122,7 @@ public class PlainClient implements SaslClient // Create an array big enough to hold the results.
byte[] result =
new byte[password.length + authenticationBytes.length + 2
- + ((authorizationBytes == null) ? 0 : authorizationBytes.length)];
+ + ((authorizationBytes == null) ? 0 : authorizationBytes.length)];
// Copy the authorization id, authentication id and password into the results.
int pos = 0;
|