Minor formatting changes.
This commit is contained in:
+9
-5
@@ -106,13 +106,17 @@ public abstract class AbstractAdapterAuthenticationToken
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
public boolean equals(Object obj) {
|
public boolean equals(Object obj) {
|
||||||
if (obj instanceof AbstractAdapterAuthenticationToken) {
|
if (obj instanceof AbstractAdapterAuthenticationToken) {
|
||||||
if (!super.equals(obj))
|
if (!super.equals(obj)) {
|
||||||
return false;
|
return false;
|
||||||
AbstractAdapterAuthenticationToken test = (AbstractAdapterAuthenticationToken) obj;
|
}
|
||||||
|
|
||||||
|
AbstractAdapterAuthenticationToken test = (AbstractAdapterAuthenticationToken) obj;
|
||||||
|
|
||||||
return (this.getKeyHash() == test.getKeyHash());
|
return (this.getKeyHash() == test.getKeyHash());
|
||||||
}
|
}
|
||||||
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user