mirror of
https://github.com/TuxCoding/FastLogin.git
synced 2025-07-30 10:47:33 +02:00
Force client optimization for potential faster speed up
-server forces aggressive optimization in Java which reduces startup speed
This commit is contained in:
@ -87,7 +87,7 @@ public class LoginIT {
|
|||||||
|
|
||||||
return systemProperties.entrySet().stream()
|
return systemProperties.entrySet().stream()
|
||||||
.map(entry -> "-D" + entry.getKey() + '=' + entry.getValue())
|
.map(entry -> "-D" + entry.getKey() + '=' + entry.getValue())
|
||||||
.collect(Collectors.joining(" "));
|
.collect(Collectors.joining(" ")) + " -client";
|
||||||
}
|
}
|
||||||
|
|
||||||
@Before
|
@Before
|
||||||
|
Reference in New Issue
Block a user