mirror of
https://github.com/spring-projects/spring-security.git
synced 2025-07-13 13:53:29 +00:00
Corrected mistake in reading java.io.tmpdir.
This commit is contained in:
parent
5464678355
commit
0d9cae43bf
@ -213,7 +213,7 @@ public class LdapTestServer {
|
|||||||
String apacheWorkDir = System.getProperty("apacheDSWorkDir");
|
String apacheWorkDir = System.getProperty("apacheDSWorkDir");
|
||||||
|
|
||||||
if(apacheWorkDir == null) {
|
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);
|
File workingDir = new File(apacheWorkDir);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user