GT-3042 allow back, forward slashes in user name.

This commit is contained in:
dev747368 2019-07-30 16:50:24 -04:00
parent 019594c09f
commit bc2c1ac828
4 changed files with 89 additions and 95 deletions

View file

@ -785,13 +785,13 @@ public final class FileUtilities {
* @throws IOException if there are any issues reading the file
*/
public static List<String> getLines(BufferedReader in) throws IOException {
List<String> fileLines = new ArrayList<>();
try {
List<String> fileLines = new ArrayList<>();
String line;
while ((line = in.readLine()) != null) {
fileLines.add(line);
}
in.close();
return fileLines;
}
finally {
try {
@ -801,7 +801,6 @@ public final class FileUtilities {
// don't care; we tried
}
}
return fileLines;
}
/**