Follow-up to dabfb82
.
Signed-off-by: Jeffrey Han <itdelatrisu@gmail.com>
This commit is contained in:
parent
dabfb827ee
commit
2d150c9939
|
@ -27,15 +27,11 @@ import itdelatrisu.opsu.downloads.Updater;
|
|||
import itdelatrisu.opsu.render.CurveRenderState;
|
||||
import itdelatrisu.opsu.ui.UI;
|
||||
|
||||
import java.io.IOException;
|
||||
|
||||
import org.codehaus.plexus.util.FileUtils;
|
||||
import org.lwjgl.opengl.Display;
|
||||
import org.newdawn.slick.AppGameContainer;
|
||||
import org.newdawn.slick.Game;
|
||||
import org.newdawn.slick.SlickException;
|
||||
import org.newdawn.slick.opengl.InternalTextureLoader;
|
||||
import org.newdawn.slick.util.Log;
|
||||
|
||||
/**
|
||||
* AppGameContainer extension that sends critical errors to ErrorHandler.
|
||||
|
@ -148,13 +144,8 @@ public class Container extends AppGameContainer {
|
|||
BeatmapWatchService.removeListeners();
|
||||
|
||||
// delete temporary directory
|
||||
if (Options.TEMP_DIR.isDirectory()) {
|
||||
try {
|
||||
FileUtils.deleteDirectory(Options.TEMP_DIR);
|
||||
} catch (IOException e) {
|
||||
Log.warn(String.format("Failed to delete temp dir: %s", Options.TEMP_DIR.getAbsolutePath()), e);
|
||||
}
|
||||
}
|
||||
if (Options.TEMP_DIR.isDirectory())
|
||||
Utils.deleteDirectory(Options.TEMP_DIR);
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
@ -346,7 +346,7 @@ public class Utils {
|
|||
* deletes the directory itself.
|
||||
* @param dir the directory to delete
|
||||
*/
|
||||
private static void deleteDirectory(File dir) {
|
||||
public static void deleteDirectory(File dir) {
|
||||
if (dir == null || !dir.isDirectory())
|
||||
return;
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user