Revert "Merge branch 'master' into master"
This reverts commit43520c1958, reversing changes made to2e7aea3c62.
This commit is contained in:
@@ -59,7 +59,14 @@ public class Username implements Comparable {
|
||||
public boolean __equals_466(Object var1) {
|
||||
if(var1 instanceof Username) {
|
||||
Username var2 = (Username)var1;
|
||||
return this.cleanName == null?var2.cleanName == null:var2.cleanName != null && this.__hashCode_467() == var2.__hashCode_467() && this.cleanName.equals(var2.cleanName);
|
||||
if (this.cleanName == null)
|
||||
{
|
||||
return var2.cleanName == null;
|
||||
}
|
||||
else
|
||||
{
|
||||
return var2.cleanName != null && (this.__hashCode_467() == var2.__hashCode_467() && this.cleanName.equals(var2.cleanName));
|
||||
}
|
||||
} else {
|
||||
return false;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user