mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
#1696 - Refactor - trim unnecessary whitespace around IN clause bind parameters
This commit is contained in:
@@ -62,9 +62,9 @@ public class MultiValueBind {
|
||||
}
|
||||
sb.append(" in (?");
|
||||
for (int i = 1; i < size; i++) {
|
||||
sb.append(", ").append("?");
|
||||
sb.append(",?");
|
||||
}
|
||||
sb.append(" ) ");
|
||||
sb.append(")");
|
||||
return sb.toString();
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user