Whoopskidoodle.

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@1715 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2002-09-18 22:06:54 +00:00
parent 5c2ae9efea
commit 7d8c848454
@@ -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;
@@ -61,9 +61,8 @@ public class UsernamePasswordCreds extends Credentials
// documentation inherited
public boolean equals (Object other)
{
if (other instanceof UsernamePasswordCredentials) {
UsernamePasswordCredentials upcreds =
(UsernamePasswordCredentials)other;
if (other instanceof UsernamePasswordCreds) {
UsernamePasswordCreds upcreds = (UsernamePasswordCreds)other;
return super.equals(other) &&
_password.equals(upcreds._password);
} else {