Code cleanup

This commit is contained in:
serso
2016-01-30 22:28:58 +01:00
parent 51ced42d8e
commit 3797f26330
29 changed files with 51 additions and 73 deletions

View File

@@ -132,9 +132,8 @@ public class CppVariable implements Jsonable, Parcelable {
CppVariable that = (CppVariable) o;
if (id != that.id) return false;
if (!name.equals(that.name)) return false;
return name.equals(that.name);
return true;
}
@Override