- remove size check from natives extraction (write test needed for windows anyway)

git-svn-id: https://jmonkeyengine.googlecode.com/svn/trunk@8521 75d07b2b-3a1a-0410-a2c5-0572b91ccdca
This commit is contained in:
nor..67 2011-10-23 21:34:46 +00:00
parent 36b6ab3286
commit 2c0775e3f3

View File

@ -64,7 +64,7 @@ public class Natives {
} }
if (extractionDir == null) { if (extractionDir == null) {
File workingFolder = new File("").getAbsoluteFile(); File workingFolder = new File("").getAbsoluteFile();
if (workingFolder.getUsableSpace() == 0 || !workingFolder.canWrite()) { if (!workingFolder.canWrite()) {
setStorageExtractionDir(); setStorageExtractionDir();
} else { } else {
try { try {