Create the temporary folders directly in the /tmp folder. BLD200409221800
authormentlicher@netbeans.org
Wed, 22 Sep 2004 17:03:04 +0000
changeset 526959ed6d17658e
parent 5268 fbf202075a43
child 5270 e6cc44ffc2c2
Create the temporary folders directly in the /tmp folder.
This is a fix of issue #49391.
vcscore/src/org/netbeans/modules/vcscore/util/VcsUtilities.java
     1.1 --- a/vcscore/src/org/netbeans/modules/vcscore/util/VcsUtilities.java	Wed Sep 22 14:04:07 2004 +0000
     1.2 +++ b/vcscore/src/org/netbeans/modules/vcscore/util/VcsUtilities.java	Wed Sep 22 17:03:04 2004 +0000
     1.3 @@ -1034,7 +1034,7 @@
     1.4       * Creates a temporary directory.
     1.5       */
     1.6      public static File createTMP() {
     1.7 -        String TMP_ROOT=System.getProperty("java.io.tmpdir")+File.separator+"vcs";
     1.8 +        String TMP_ROOT=System.getProperty("java.io.tmpdir");
     1.9          File tmpDir = new File(TMP_ROOT);
    1.10          if (!tmpDir.exists()) {
    1.11              tmpDir.mkdirs();