code hint fixes

This commit is contained in:
2015-01-18 22:49:59 +01:00
parent ade56d45a2
commit e4e9676081
25 changed files with 136 additions and 147 deletions
@@ -60,10 +60,7 @@ public class FontFamily implements Comparable<FontFamily> {
return false;
}
final FontFamily other = (FontFamily) obj;
if (!Objects.equals(this.familyEn, other.familyEn)) {
return false;
}
return true;
return Objects.equals(this.familyEn, other.familyEn);
}
@Override