mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
No effective change - Code cleanup, simplified if
This commit is contained in:
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user