diff options
author | Robert Greig <rgreig@apache.org> | 2007-05-02 14:23:22 +0000 |
---|---|---|
committer | Robert Greig <rgreig@apache.org> | 2007-05-02 14:23:22 +0000 |
commit | 69a5be3b51619317bb5732557532db15844061c6 (patch) | |
tree | cbd3ac2d760a8ba222c23bccf06109e5abbf80b8 /java/client-java14/src | |
parent | 42a5d17829488ac72117e763d9f2d1b83a577cc2 (diff) | |
download | qpid-python-69a5be3b51619317bb5732557532db15844061c6.tar.gz |
Removed accidental inclusion of copyright notices.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/branches/M2@534478 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;
|