Analyzer: Delete unused class in source_factory_test

Change-Id: Ia46e3cec3addc18c69259587d5186f9ec078cbfa
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/170761
Reviewed-by: Konstantin Shcheglov <scheglov@google.com>
Commit-Queue: Samuel Rawlins <srawlins@google.com>
This commit is contained in:
Sam Rawlins 2020-11-06 22:40:13 +00:00 committed by commit-bot@chromium.org
parent 1b060fb77b
commit 594f0fd51d

View file

@ -40,15 +40,6 @@ class AbsoluteUriResolver extends UriResolver {
}
}
class CustomUriResolver extends UriResolver {
String uriPath;
CustomUriResolver({this.uriPath});
@override
Source resolveAbsolute(Uri uri, [Uri actualUri]) =>
createSource(path: uriPath);
}
@reflectiveTest
class SourceFactoryTest with ResourceProviderMixin {
void test_creation() {