Clean code.

This commit is contained in:
Christian P. MOMON 2016-06-01 13:46:56 +02:00
parent cd9e30def7
commit a16639500d

View file

@ -1,5 +1,5 @@
/** /**
* Copyright (C) 2008-2010, 2013-2015 Christian Pierre MOMON * Copyright (C) 2008-2010, 2013-2016 Christian Pierre MOMON
* *
* This file is part of Devinsy-utils. * This file is part of Devinsy-utils.
* *
@ -195,7 +195,7 @@ public class StringListUtils
result = new StringList(); result = new StringList();
// //
StringListUtils.read(result, new FileInputStream(file), charsetName); read(result, new FileInputStream(file), charsetName);
// //
return result; return result;
@ -230,7 +230,7 @@ public class StringListUtils
result = new StringList(); result = new StringList();
// //
StringListUtils.read(result, source.openStream(), charsetName); read(result, source.openStream(), charsetName);
// //
return result; return result;