Added Spring Java Conventions to all of the spring sub-projects and formatted them to meet the guidelines.

This commit is contained in:
Ben Hale
2007-08-13 16:16:51 +00:00
parent 2e4ed776c1
commit 67a05c196d
50 changed files with 119 additions and 139 deletions

View File

@@ -34,7 +34,7 @@ public class Rate implements Serializable {
if (!(o instanceof Rate)) {
return false;
}
return value.equals(((Rate)o).value);
return value.equals(((Rate) o).value);
}
public int hashCode() {

View File

@@ -26,7 +26,7 @@ public class RateCriteriaValidator implements Validator {
}
public void validate(Object obj, Errors errors) {
RateCriteria criteria = (RateCriteria)obj;
RateCriteria criteria = (RateCriteria) obj;
validateSender(criteria, errors);
validateReceiver(criteria, errors);
validatePackageDetails(criteria, errors);