No effective change - Code cleanup, simplified if

This commit is contained in:
Robin Bygrave
2015-07-31 13:23:49 +12:00
parent 88340618af
commit adef15ce2b
14 changed files with 19 additions and 79 deletions
@@ -245,11 +245,8 @@ public class TCsvReader<T> implements CsvReader<T> {
}
private boolean isDateTimeType(int t) {
if (t == Types.TIMESTAMP || t == Types.DATE || t == Types.TIME) {
return true;
}
return false;
}
return t == Types.TIMESTAMP || t == Types.DATE || t == Types.TIME;
}
@SuppressWarnings("unchecked")
protected T buildBeanFromLineContent(int row, String[] line) {