From 16bae378d3ff39d624cab44712c47b099c491934 Mon Sep 17 00:00:00 2001 From: Sven Gothel Date: Fri, 30 Sep 2011 14:47:05 +0200 Subject: IOUtil: Generalize w/ getTempRoot() --- src/java/com/jogamp/common/util/cache/TempFileCache.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/java/com/jogamp/common/util/cache') diff --git a/src/java/com/jogamp/common/util/cache/TempFileCache.java b/src/java/com/jogamp/common/util/cache/TempFileCache.java index a4cb2f4..9c2556d 100644 --- a/src/java/com/jogamp/common/util/cache/TempFileCache.java +++ b/src/java/com/jogamp/common/util/cache/TempFileCache.java @@ -34,6 +34,8 @@ import java.io.IOException; import java.nio.channels.FileChannel; import java.nio.channels.FileLock; +import com.jogamp.common.util.IOUtil; + import jogamp.common.Debug; public class TempFileCache { @@ -141,10 +143,8 @@ public class TempFileCache { } synchronized (System.out) { - // Get the name of the tmpbase directory. - String tmpBaseName = System.getProperty("java.io.tmpdir") + File.separator + tmpDirPrefix ; - tmpBaseDir = new File(tmpBaseName); + tmpBaseDir = new File(IOUtil.getTempRoot(), tmpDirPrefix); tmpRootPropValue = System.getProperty(tmpRootPropName); -- cgit v1.2.3