PR cleanup #1164

Merged
akinwale merged 32 commits from pr-1118 into master 2021-03-08 20:15:23 +01:00
Showing only changes of commit e0bf54c304 - Show all commits

View file

@ -262,7 +262,7 @@ public class LbryUri {
return toString().hashCode();
}
public boolean equals(Object o) {
if (o == null || !(o instanceof LbryUri)) {
if (!(o instanceof LbryUri)) {
return false;
}
return toString().equalsIgnoreCase(o.toString());