Merge remote-tracking branch 'origin/jetty-10.0.x' into jetty-11.0.x

This commit is contained in:
Joakim Erdfelt 2022-10-06 07:14:16 -05:00
commit 11e2e7d059
No known key found for this signature in database
GPG Key ID: 2D0E1FB8FE4B68B4
1 changed files with 4 additions and 3 deletions

View File

@ -256,10 +256,11 @@ public class PathMappings<E> implements Iterable<MappedResource<E>>, Dumpable
/**
* @deprecated use {@link #getMatched(String)} instead
*/
@Deprecated
@Deprecated(forRemoval = true)
public MappedResource<E> getMatch(String path)
{
throw new UnsupportedOperationException("Use .getMatched(String) instead");
MatchedResource<E> matchedPath = getMatched(path);
return new MappedResource<>(matchedPath.getPathSpec(), matchedPath.getResource());
}
@Override
@ -271,7 +272,7 @@ public class PathMappings<E> implements Iterable<MappedResource<E>>, Dumpable
/**
* @deprecated use {@link PathSpec#from(String)} instead
*/
@Deprecated
@Deprecated(forRemoval = true)
public static PathSpec asPathSpec(String pathSpecString)
{
return PathSpec.from(pathSpecString);