Skip to content

Commit

Permalink
Remove print statements
Browse files Browse the repository at this point in the history
  • Loading branch information
elliette committed Aug 22, 2023
1 parent 54e24e2 commit b5bef0a
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions dwds/lib/src/utilities/dart_uri.dart
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,6 @@ class DartUri {
/// Record all of the libraries, indexed by their absolute file: URI.
static void recordAbsoluteUris(Iterable<String> libraryUris) {
for (var uri in libraryUris) {
print('recording $uri');
_recordAbsoluteUri(uri);
if (globalIsInternalBuild) {
_recordG3RelativeUri(uri);
Expand All @@ -196,7 +195,6 @@ class DartUri {
if (absoluteUri == null) return;

final g3RelativeUri = globalLoadStrategy.g3RelativePath(absoluteUri);
print('now recording $g3RelativeUri');
if (g3RelativeUri != null) {
_g3RelativeUriToResolvedUri[g3RelativeUri] = absoluteUri;
}
Expand Down

0 comments on commit b5bef0a

Please sign in to comment.