Fix comment

This commit is contained in:
Connor Taffe 2019-12-12 09:48:27 -06:00
parent 93b909ef70
commit 415418faab
No known key found for this signature in database
GPG Key ID: AEDB966AFBDDFE56

View File

@ -307,8 +307,8 @@ public void testRunNonStaticMain() throws Throwable {
RunJar runJar = spy(new RunJar());
// enable the client classloader
when(runJar.useClientClassLoader()).thenReturn(true);
// set the system classes and blacklist the test main class and the test
// third class so they can be loaded by the application classloader
// set the system classes and blacklist the test main class so it
// can be loaded by the application classloader
String mainCls = NonStaticMain.class.getName();
String systemClasses = "-" + mainCls + ","
+ ApplicationClassLoader.SYSTEM_CLASSES_DEFAULT;