mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-09 20:30:28 +01:00
90ac03522a
This reverts commit d6e3dff7d8
.
77 lines
3.8 KiB
Diff
77 lines
3.8 KiB
Diff
--- ../work/decompile-8eb82bde//net/minecraft/server/NameReferencingFileConverter.java 2014-11-28 17:43:43.261707431 +0000
|
|
+++ src/main/java/net/minecraft/server/NameReferencingFileConverter.java 2014-11-28 17:38:23.000000000 +0000
|
|
@@ -32,7 +32,7 @@
|
|
public static final File c = new File("ops.txt");
|
|
public static final File d = new File("white-list.txt");
|
|
|
|
- static List a(File file, Map map) {
|
|
+ static List a(File file, Map map) throws IOException { // CraftBukkit - Added throws
|
|
List list = Files.readLines(file, Charsets.UTF_8);
|
|
Iterator iterator = list.iterator();
|
|
|
|
@@ -77,9 +77,11 @@
|
|
if (gameprofilebanlist.c().exists()) {
|
|
try {
|
|
gameprofilebanlist.load();
|
|
- } catch (FileNotFoundException filenotfoundexception) {
|
|
- NameReferencingFileConverter.e.warn("Could not load existing file " + gameprofilebanlist.c().getName(), filenotfoundexception);
|
|
+ // CraftBukkit start - FileNotFoundException -> IOException, don't print stacetrace
|
|
+ } catch (IOException filenotfoundexception) {
|
|
+ e.warn("Could not load existing file " + gameprofilebanlist.c().getName() + ", " + filenotfoundexception.getMessage());
|
|
}
|
|
+ // CraftBukkit end
|
|
}
|
|
|
|
try {
|
|
@@ -111,9 +113,11 @@
|
|
if (ipbanlist.c().exists()) {
|
|
try {
|
|
ipbanlist.load();
|
|
- } catch (FileNotFoundException filenotfoundexception) {
|
|
- NameReferencingFileConverter.e.warn("Could not load existing file " + ipbanlist.c().getName(), filenotfoundexception);
|
|
+ // CraftBukkit start - FileNotFoundException -> IOException, don't print stacetrace
|
|
+ } catch (IOException filenotfoundexception) {
|
|
+ e.warn("Could not load existing file " + ipbanlist.c().getName() + ", " + filenotfoundexception.getMessage());
|
|
}
|
|
+ // CraftBukkit end
|
|
}
|
|
|
|
try {
|
|
@@ -152,9 +156,11 @@
|
|
if (oplist.c().exists()) {
|
|
try {
|
|
oplist.load();
|
|
- } catch (FileNotFoundException filenotfoundexception) {
|
|
- NameReferencingFileConverter.e.warn("Could not load existing file " + oplist.c().getName(), filenotfoundexception);
|
|
+ // CraftBukkit start - FileNotFoundException -> IOException, don't print stacetrace
|
|
+ } catch (IOException filenotfoundexception) {
|
|
+ e.warn("Could not load existing file " + oplist.c().getName() + ", " + filenotfoundexception.getMessage());
|
|
}
|
|
+ // CraftBukkit end
|
|
}
|
|
|
|
try {
|
|
@@ -184,9 +190,11 @@
|
|
if (whitelist.c().exists()) {
|
|
try {
|
|
whitelist.load();
|
|
- } catch (FileNotFoundException filenotfoundexception) {
|
|
- NameReferencingFileConverter.e.warn("Could not load existing file " + whitelist.c().getName(), filenotfoundexception);
|
|
+ // CraftBukkit start - FileNotFoundException -> IOException, don't print stacetrace
|
|
+ } catch (IOException filenotfoundexception) {
|
|
+ e.warn("Could not load existing file " + whitelist.c().getName() + ", " + filenotfoundexception.getMessage());
|
|
}
|
|
+ // CraftBukkit end
|
|
}
|
|
|
|
try {
|
|
@@ -351,7 +359,7 @@
|
|
|
|
private static File d(PropertyManager propertymanager) {
|
|
String s = propertymanager.getString("level-name", "world");
|
|
- File file = new File(s);
|
|
+ File file = new File(MinecraftServer.getServer().server.getWorldContainer(), s); // CraftBukkit - Respect container setting
|
|
|
|
return new File(file, "players");
|
|
}
|