cache: couple of newFile -> newFolder

This commit is contained in:
Adam
2017-05-20 18:13:11 -04:00
parent 6ea98a73e0
commit ba4ff2edd2
4 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -54,7 +54,7 @@ public class OverlayDumper
public void extract() throws IOException
{
java.io.File base = StoreLocation.LOCATION,
outDir = folder.newFile();
outDir = folder.newFolder();
int count = 0;
+1 -1
View File
@@ -55,7 +55,7 @@ public class SequenceDumper
public void extract() throws IOException
{
java.io.File base = StoreLocation.LOCATION,
outDir = folder.newFile();
outDir = folder.newFolder();
int count = 0;
+1 -1
View File
@@ -50,7 +50,7 @@ public class TextureDumper
public void extract() throws IOException
{
java.io.File base = StoreLocation.LOCATION,
outDir = folder.newFile();
outDir = folder.newFolder();
int count = 0;
+1 -1
View File
@@ -48,7 +48,7 @@ public class TitleDumper
public void extract() throws IOException
{
java.io.File base = StoreLocation.LOCATION,
outFile = folder.newFile();
outFile = folder.newFolder();
try (Store store = new Store(base))
{