Don't inline constant

This commit is contained in:
Lukas Eder 2012-12-14 16:02:20 +01:00
parent 90e135d013
commit b4178b5dc7

View File

@ -263,7 +263,7 @@ public class PostgresUtils {
public static List<String> toPGObject(String input) {
List<String> values = new ArrayList<String>();
int i = 0;
int state = 0;
int state = PG_OBJECT_INIT;
StringBuilder sb = null;
while (i < input.length()) {