|
Just some minor comments:
Class CompanyModelReader - The CompanyModelReader change is already checked in as part of patch 156. Class FullName - minor: you can shorten the implementation of equals: public boolean equals(Object o) { FullName other = (FullName) o; if (this.firstName == null) { return other.firstName == null; } if (this.lastName == null) { return other.lastName == null; } ... - How about adding some class javadoc describing why you added two getter methods getFirstName and getFirstname etc.? The second patch contains all the comments.
The second patch has been checked in.
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
JDO-156andJDO-168, in that order. For this reason, those patches must be checked in first.