Убрана неиспользуемая переменная

This commit is contained in:
Victor 2014-01-06 16:15:16 +02:00
parent eb4f21fd4e
commit 646d8c8ad1

View File

@ -85,11 +85,10 @@ public class CsvReader<T> {
}
String line;
while ( (line = reader.readLine()) != null ) {
T obj = null;
try {
if (!line.isEmpty()) {
String[] params = line.split(separator);
obj = (T) handler.createObject(params);
handler.createObject(params);
}
} catch (RuntimeException ex) {
Util.handleException(ex);