mirror of
https://github.com/spring-projects/spring-boot.git
synced 2026-05-04 05:01:06 +01:00
Revert "Add launcher.count as useful performance testing aid"
This reverts commit e1605b4691.
This commit is contained in:
+1
-4
@@ -41,9 +41,6 @@ public class JarLauncher extends ExecutableArchiveLauncher {
|
||||
}
|
||||
|
||||
public static void main(String[] args) {
|
||||
int count = new Integer(System.getProperty("launcher.count", "1"));
|
||||
for (int i = 0; i < count; i++) {
|
||||
new JarLauncher().launch(args);
|
||||
}
|
||||
new JarLauncher().launch(args);
|
||||
}
|
||||
}
|
||||
|
||||
+1
-4
@@ -539,10 +539,7 @@ public class PropertiesLauncher extends Launcher {
|
||||
}
|
||||
|
||||
public static void main(String[] args) {
|
||||
int count = new Integer(System.getProperty("launcher.count", "1"));
|
||||
for (int i = 0; i < count; i++) {
|
||||
new PropertiesLauncher().launch(args);
|
||||
}
|
||||
new PropertiesLauncher().launch(args);
|
||||
}
|
||||
|
||||
public static String toCamelCase(CharSequence string) {
|
||||
|
||||
Reference in New Issue
Block a user