|
Michael Watzek made changes - 06/Oct/05 07:12 PM
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.
Michael Watzek made changes - 13/Oct/05 12:33 AM
The second patch has been checked in.
Michael Watzek made changes - 13/Oct/05 01:38 AM
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
JDO-156andJDO-168, in that order. For this reason, those patches must be checked in first.