### Eclipse Workspace Patch 1.0 #P groovy-core Index: src/main/groovy/sql/Sql.java =================================================================== RCS file: /cvs/groovy/groovy/groovy-core/src/main/groovy/sql/Sql.java,v retrieving revision 1.21 diff -u -r1.21 Sql.java --- src/main/groovy/sql/Sql.java 30 May 2006 17:27:29 -0000 1.21 +++ src/main/groovy/sql/Sql.java 18 Jun 2006 05:55:15 -0000 @@ -1049,6 +1049,7 @@ else { nulls = true; buffer.append("?'\"?"); // will replace these with nullish + iter.remove(); // values } } @@ -1133,9 +1134,7 @@ Object[] values = gstring.getValues(); List answer = new ArrayList(values.length); for (int i = 0; i < values.length; i++) { - if (values[i] != null) { - answer.add(values[i]); - } + answer.add(values[i]); } return answer; }