Correct typo

Signed-off-by: Joakim Erdfelt <joakim.erdfelt@gmail.com>
This commit is contained in:
Joakim Erdfelt 2020-08-10 10:37:02 -05:00
parent dcf867cd2b
commit 4957c091d0
No known key found for this signature in database
GPG Key ID: 2D0E1FB8FE4B68B4
2 changed files with 4 additions and 4 deletions

View File

@ -175,7 +175,7 @@ public class ResourceCollectionTest
}
@Test
public void testMutlipleSources1() throws Exception
public void testMultipleSources1() throws Exception
{
ResourceCollection rc1 = new ResourceCollection(new String[]{
"src/test/resources/org/eclipse/jetty/util/resource/one/",

View File

@ -134,17 +134,17 @@ public class WebInfConfiguration extends AbstractConfiguration
@Override
public void preConfigure(final WebAppContext context) throws Exception
{
//Make a temp directory for the webapp if one is not already set
// Make a temp directory for the webapp if one is not already set
resolveTempDirectory(context);
//Extract webapp if necessary
// Extract webapp if necessary
unpack(context);
findAndFilterContainerPaths(context);
findAndFilterWebAppPaths(context);
//No pattern to appy to classes, just add to metadata
// No pattern to apply to classes, just add to metadata
context.getMetaData().setWebInfClassesDirs(findClassDirs(context));
}