Improved ClassMatcher/Location behavior.

+ Reduces need for Resource / ResourceFactory.
+ Corrected path equals logic
This commit is contained in:
Joakim Erdfelt 2022-10-17 15:16:50 -05:00
parent f27e4e7273
commit 6b2425a23f
No known key found for this signature in database
GPG Key ID: 2D0E1FB8FE4B68B4
1 changed files with 1 additions and 7 deletions

View File

@ -35,13 +35,7 @@ public class ClassMatcherTest
{
private final ClassMatcher _pattern = new ClassMatcher();
protected static Supplier<URI> NULL_SUPPLIER = new Supplier<URI>()
{
public URI get()
{
return null;
}
};
protected static Supplier<URI> NULL_SUPPLIER = () -> null;
@BeforeEach
public void before()