Set name of unnamed threads

This commit is contained in:
johni0702
2015-05-24 15:18:41 +02:00
parent 1c9a04d1dc
commit 538e95ad95
12 changed files with 25 additions and 25 deletions

View File

@@ -86,7 +86,7 @@ public class GuiPlayerOverview extends GuiScreen {
e.printStackTrace();
}
}
}).start();
}, "replaymod-skin-loader").start();
}
playerCount = players.size();

View File

@@ -114,7 +114,7 @@ public class GuiLoginPrompt extends GuiScreen {
break;
}
}
}).start();
}, "replaymod-auth").start();
}
} else if(button.id == GuiConstants.LOGIN_CANCEL_BUTTON) {
mc.displayGuiScreen(parent);

View File

@@ -200,7 +200,7 @@ public class GuiRegister extends GuiScreen {
message = I18n.format("replaymod.gui.login.connectionerror");
}
}
}).start();
}, "replaymod-register").start();
break;
}
}

View File

@@ -390,7 +390,7 @@ public class GuiReplayCenter extends GuiScreen implements GuiYesNoCallback {
currentTab = Tab.RECENT_FILES;
updateCurrentList(new SearchPagination(recentFileSearchQuery));
}
});
}, "replaymod-list-loader");
currentListLoader.start();
}
@@ -402,7 +402,7 @@ public class GuiReplayCenter extends GuiScreen implements GuiYesNoCallback {
currentTab = Tab.BEST_FILES;
updateCurrentList(new SearchPagination(bestFileSearchQuery));
}
});
}, "replaymod-list-loader");
currentListLoader.start();
}
@@ -414,7 +414,7 @@ public class GuiReplayCenter extends GuiScreen implements GuiYesNoCallback {
currentTab = Tab.DOWNLOADED_FILES;
updateCurrentList(new DownloadedFilePagination());
}
});
}, "replaymod-list-loader");
currentListLoader.start();
}
@@ -427,7 +427,7 @@ public class GuiReplayCenter extends GuiScreen implements GuiYesNoCallback {
ReplayMod.favoritedFileHandler.reloadFavorites();
updateCurrentList(new FavoritedFilePagination());
}
});
}, "replaymod-list-loader");
currentListLoader.start();
}

View File

@@ -241,7 +241,7 @@ public class GuiUploadFile extends GuiScreen {
e.printStackTrace();
}
}
}).start();
}, "replaymod-file-uploader").start();
} else if(button.id == GuiConstants.UPLOAD_CANCEL_BUTTON) {
uploader.cancelUploading();
}