Minor code cleanup.

This commit is contained in:
hns 2008-10-17 16:07:31 +00:00
parent 1504777bcc
commit f099d9ae69
2 changed files with 3 additions and 6 deletions

View file

@ -794,7 +794,7 @@ public final class RequestEvaluator implements Runnable {
// Get a reference to the res object at the time we enter // Get a reference to the res object at the time we enter
ResponseTrans localRes = res; ResponseTrans localRes = res;
if ((localRes == null) || !req.equals(this.req)) { if (localRes == null || !req.equals(this.req)) {
return null; return null;
} }

View file

@ -314,9 +314,6 @@ public final class DbMapping {
} }
rel.update(dbField, props); rel.update(dbField, props);
// store relation with lower case property name
// (ResourceProperties now preserve key capitalization!)
p2d.put(propName, rel); p2d.put(propName, rel);
if ((rel.columnName != null) && rel.isPrimitiveOrReference()) { if ((rel.columnName != null) && rel.isPrimitiveOrReference()) {
@ -1548,7 +1545,7 @@ public final class DbMapping {
* a utility method to escape single quotes used for inserting * a utility method to escape single quotes used for inserting
* string-values into relational databases. * string-values into relational databases.
* Searches for "'" characters and escapes them by duplicating them (= "''") * Searches for "'" characters and escapes them by duplicating them (= "''")
* @param str the string to escape * @param value the string to escape
* @return the escaped string * @return the escaped string
*/ */
static String escapeString(Object value) { static String escapeString(Object value) {
@ -1575,7 +1572,7 @@ public final class DbMapping {
/** /**
* Utility method to check whether the argument is a number literal. * Utility method to check whether the argument is a number literal.
* @param str a string representing a number literal * @param value a string representing a number literal
* @return the argument, if it conforms to the number literal syntax * @return the argument, if it conforms to the number literal syntax
* @throws IllegalArgumentException if the argument does not represent a number * @throws IllegalArgumentException if the argument does not represent a number
*/ */