I'm not sure why I thought this was a good idea last night, even temporarily for testing, but it's certainly not anymore.

This commit is contained in:
Par Winzell
2010-01-27 17:08:12 +00:00
parent f0c8d185f0
commit d079445420
@@ -48,9 +48,7 @@ class MultiKeySet<T extends PersistentRecord> extends KeySet<T>
for (int ii = 0; ii < _keyFields.length; ii ++) {
columns.add(ii);
}
SQLExpression foo = rowsToSQLExpression(Lists.newLinkedList(Arrays.asList(_keys)), columns);
System.err.println("SQL: " + foo);
return foo;
return rowsToSQLExpression(Lists.newLinkedList(Arrays.asList(_keys)), columns);
}
// from Iterable<Key<T>>