Improved ClassMatcher/Location behavior.
+ Reduces need for Resource / ResourceFactory. + Corrected path equals logic
This commit is contained in:
parent
f27e4e7273
commit
6b2425a23f
|
@ -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()
|
||||
|
|
Loading…
Reference in New Issue