Merge pull request #8629 from eclipse/fix/jetty-10-restore-pathmapping-getmatch

Issue #8628 - pseudo restore `PathMappings.getMatch(String)`
This commit is contained in:
Joakim Erdfelt 2022-10-06 07:13:45 -05:00 committed by GitHub
commit 4b908d9483
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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 use {@link #getMatched(String)} instead
*/ */
@Deprecated @Deprecated(forRemoval = true)
public MappedResource<E> getMatch(String path) 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 @Override
@ -271,7 +272,7 @@ public class PathMappings<E> implements Iterable<MappedResource<E>>, Dumpable
/** /**
* @deprecated use {@link PathSpec#from(String)} instead * @deprecated use {@link PathSpec#from(String)} instead
*/ */
@Deprecated @Deprecated(forRemoval = true)
public static PathSpec asPathSpec(String pathSpecString) public static PathSpec asPathSpec(String pathSpecString)
{ {
return PathSpec.from(pathSpecString); return PathSpec.from(pathSpecString);