DBZ-762 Formatting

This commit is contained in:
Gunnar Morling 2018-06-26 11:01:42 +02:00
parent f176d8fe03
commit daeeaa74cd

View File

@ -566,9 +566,11 @@ protected Object convertCitext(Column column, Field fieldDefn, Object data) {
if (data instanceof byte[]) {
return new String((byte[]) data);
} else if (data instanceof String) {
}
else if (data instanceof String) {
return data;
} else if (data instanceof PGobject) {
}
else if (data instanceof PGobject) {
return ((PGobject) data).getValue();
}