move return inside sync

This commit is contained in:
zzz
2018-08-10 16:36:33 +00:00
parent 8dbc11566b
commit 1c73be515a

View File

@ -439,9 +439,9 @@ public class I2PAppContext {
System.err.println("ERROR: Could not create temp dir " + _tmpDir.getAbsolutePath()); System.err.println("ERROR: Could not create temp dir " + _tmpDir.getAbsolutePath());
} }
} }
}
return _tmpDir; return _tmpDir;
} }
}
/** don't rely on deleteOnExit() */ /** don't rely on deleteOnExit() */
public void deleteTempDir() { public void deleteTempDir() {