فهرست منبع

Corrected mistake in reading java.io.tmpdir.

Luke Taylor 18 سال پیش
والد
کامیت
0d9cae43bf
1فایلهای تغییر یافته به همراه1 افزوده شده و 1 حذف شده
  1. 1 1
      core/src/test/java/org/acegisecurity/ldap/LdapTestServer.java

+ 1 - 1
core/src/test/java/org/acegisecurity/ldap/LdapTestServer.java

@@ -213,7 +213,7 @@ public class LdapTestServer {
         String apacheWorkDir = System.getProperty("apacheDSWorkDir");
 
         if(apacheWorkDir == null) {
-            apacheWorkDir = System.getProperty("java.io.tmpdir" + File.separator + "apacheds-work");
+            apacheWorkDir = System.getProperty("java.io.tmpdir") + File.separator + "apacheds-work";
         }
 
         File workingDir = new File(apacheWorkDir);