if (this == obj) {
return true;
}
- if (obj == null) {
- return false;
- }
if (!(obj instanceof ApplicationTaglibDescriptor)) {
return false;
}
public boolean equals(Object obj) {
if (this == obj)
return true;
- if (obj == null)
- return false;
if (!(obj instanceof LoginConfig))
return false;
LoginConfig other = (LoginConfig) obj;
@Override
public boolean equals(Object o) {
- if ( o == null ) return false;
if ( !(o instanceof AbstractReplicatedMap)) return false;
if ( !(o.getClass().equals(this.getClass())) ) return false;
AbstractReplicatedMap other = (AbstractReplicatedMap)o;
if (this == obj) {
return true;
}
- if (obj == null) {
- return false;
- }
if (!(obj instanceof SimpleNode)) {
return false;
}
@Override
public boolean equals(Object obj) {
- if ((obj != null) && (obj instanceof NamingEntry)) {
+ if (obj instanceof NamingEntry) {
return name.equals(((NamingEntry) obj).name);
} else {
return false;
@Override
public boolean equals(Object obj) {
- if (obj == null)
- return (false);
if (!(obj instanceof URL))
return (false);
URL other = (URL) obj;
<fix>
Code clean-up to remove unused code and reduce IDE warnings. (markt)
</fix>
+ <fix>
+ <bug>50601</bug>: Code clean-up. Patch provided by sebb. (markt)
+ </fix>
</changelog>
</subsection>
</section>