3
0
Mirror von https://github.com/PaperMC/Paper.git synchronisiert 2024-12-18 20:40:08 +01:00

Don't try to parse directories if we don't have any.

Dieser Commit ist enthalten in:
Travis Watkins 2012-06-06 12:12:42 -05:00
Ursprung 6a37511144
Commit 77cc225b83

Datei anzeigen

@ -51,8 +51,11 @@ public class ConsoleLogManager {
// We only care about parsing for directories, FileHandler can do file names by itself
File parent = new File(pattern).getParentFile();
String parentPath = parent.getPath();
StringBuilder fixedPattern = new StringBuilder();
String parentPath = "";
if (parent != null) {
parentPath = parent.getPath();
}
int i = 0;
while (i < parentPath.length()) {