Whoopskidoodle.
git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@1715 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
@@ -1,5 +1,5 @@
|
|||||||
//
|
//
|
||||||
// $Id: UsernamePasswordCreds.java,v 1.8 2002/09/18 21:58:30 mdb Exp $
|
// $Id: UsernamePasswordCreds.java,v 1.9 2002/09/18 22:06:54 mdb Exp $
|
||||||
|
|
||||||
package com.threerings.presents.net;
|
package com.threerings.presents.net;
|
||||||
|
|
||||||
@@ -61,9 +61,8 @@ public class UsernamePasswordCreds extends Credentials
|
|||||||
// documentation inherited
|
// documentation inherited
|
||||||
public boolean equals (Object other)
|
public boolean equals (Object other)
|
||||||
{
|
{
|
||||||
if (other instanceof UsernamePasswordCredentials) {
|
if (other instanceof UsernamePasswordCreds) {
|
||||||
UsernamePasswordCredentials upcreds =
|
UsernamePasswordCreds upcreds = (UsernamePasswordCreds)other;
|
||||||
(UsernamePasswordCredentials)other;
|
|
||||||
return super.equals(other) &&
|
return super.equals(other) &&
|
||||||
_password.equals(upcreds._password);
|
_password.equals(upcreds._password);
|
||||||
} else {
|
} else {
|
||||||
|
|||||||
Reference in New Issue
Block a user