Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.osee.framework.core.server/src/org/eclipse/osee/framework/core/server/internal/console/ServerStatsCommand.java')
-rw-r--r--plugins/org.eclipse.osee.framework.core.server/src/org/eclipse/osee/framework/core/server/internal/console/ServerStatsCommand.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/org.eclipse.osee.framework.core.server/src/org/eclipse/osee/framework/core/server/internal/console/ServerStatsCommand.java b/plugins/org.eclipse.osee.framework.core.server/src/org/eclipse/osee/framework/core/server/internal/console/ServerStatsCommand.java
index 972b6d3f5f6..eac3dc8a013 100644
--- a/plugins/org.eclipse.osee.framework.core.server/src/org/eclipse/osee/framework/core/server/internal/console/ServerStatsCommand.java
+++ b/plugins/org.eclipse.osee.framework.core.server/src/org/eclipse/osee/framework/core/server/internal/console/ServerStatsCommand.java
@@ -36,7 +36,7 @@ import org.eclipse.osee.jdbc.JdbcService;
*/
public class ServerStatsCommand implements ConsoleCommand {
- private final Map<String, JdbcService> jdbcServices = new ConcurrentHashMap<String, JdbcService>();
+ private final Map<String, JdbcService> jdbcServices = new ConcurrentHashMap<>();
private IApplicationServerManager manager;
private IAuthenticationManager authManager;
@@ -129,7 +129,7 @@ public class ServerStatsCommand implements ConsoleCommand {
private void logServlets(IApplicationServerManager manager) {
console.writeln("Servlets:");
- List<String> contexts = new ArrayList<String>(manager.getRegisteredServlets());
+ List<String> contexts = new ArrayList<>(manager.getRegisteredServlets());
Collections.sort(contexts);
if (contexts.size() % 2 == 1) {
contexts.add("");

Back to the top