jdk/src/java.base/share/classes/java/io/File.java
changeset 37781 71ed5645f17c
parent 37593 824750ada3d6
child 41881 b26ea3cb64c5
equal deleted inserted replaced
37780:06f3783b338f 37781:71ed5645f17c
  1894     private static class TempDirectory {
  1894     private static class TempDirectory {
  1895         private TempDirectory() { }
  1895         private TempDirectory() { }
  1896 
  1896 
  1897         // temporary directory location
  1897         // temporary directory location
  1898         private static final File tmpdir = new File(
  1898         private static final File tmpdir = new File(
  1899                 GetPropertyAction.getProperty("java.io.tmpdir"));
  1899                 GetPropertyAction.privilegedGetProperty("java.io.tmpdir"));
  1900         static File location() {
  1900         static File location() {
  1901             return tmpdir;
  1901             return tmpdir;
  1902         }
  1902         }
  1903 
  1903 
  1904         // file name generation
  1904         // file name generation