Delete unused methods

This commit is contained in:
Naoki Takezoe
2017-06-25 18:18:23 +09:00
parent 282d5fe239
commit c6e095d066
2 changed files with 0 additions and 36 deletions

View File

@@ -134,17 +134,6 @@ public class JettyLauncher {
return new File(System.getProperty("user.home"), ".gitbucket");
}
// private static void deleteDirectory(File dir){
// for(File file: dir.listFiles()){
// if(file.isFile()){
// file.delete();
// } else if(file.isDirectory()){
// deleteDirectory(file);
// }
// }
// dir.delete();
// }
private static Handler addStatisticsHandler(Handler handler) {
// The graceful shutdown is implemented via the statistics handler.
// See the following: https://bugs.eclipse.org/bugs/show_bug.cgi?id=420142