Skip to content

Commit

Permalink
change list for set
Browse files Browse the repository at this point in the history
  • Loading branch information
jandro996 committed May 13, 2024
1 parent c248cae commit 85c0cc4
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -71,10 +71,10 @@ public class ApplicationModuleImpl extends SinkModuleBase implements Application
static final String JETTY_JNDI_APP = "Test JNDI WebApp";
static final String JETTY_SPEC_APP = "Test Annotations WebApp";
static final String JETTY_TEST_APP = "Test WebApp";
public static final Set ADMIN_CONSOLE_LIST =
new HashSet(Arrays.asList(TOMCAT_MANAGER_APP, TOMCAT_HOST_MANAGER_APP));
public static final Set DEFAULT_APP_LIST =
new HashSet(
public static final Set<String> ADMIN_CONSOLE_LIST =
new HashSet<>(Arrays.asList(TOMCAT_MANAGER_APP, TOMCAT_HOST_MANAGER_APP));
public static final Set<String> DEFAULT_APP_LIST =
new HashSet<>(
Arrays.asList(
TOMCAT_SAMPLES_APP,
JETTY_ASYNC_REST_APP,
Expand Down

0 comments on commit 85c0cc4

Please sign in to comment.