Skip to content

Commit

Permalink
remove unnecessary library names
Browse files Browse the repository at this point in the history
Fixes generated using `dart fix --code=unnecessary_library_name --apply`

See conversation in dart-lang/lints#181

Change-Id: Id2b975e4aa27348d8883f1aea22e00dd9f4fc493
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/359322
Reviewed-by: Konstantin Shcheglov <scheglov@google.com>
Commit-Queue: Phil Quitslund <pquitslund@google.com>
  • Loading branch information
pq authored and Commit Queue committed Mar 22, 2024
1 parent a19c07f commit 1966511
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pkg/analyzer/lib/src/summary/base.dart
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
// BSD-style license that can be found in the LICENSE file.

/// Base functionality which code generated summary classes are built upon.
library analyzer.src.summary.base;
library;

/// Annotation used in the summary IDL to indicate the id of a field. The set
/// of ids used by a class must cover the contiguous range from 0 to N-1, where
Expand Down
2 changes: 1 addition & 1 deletion pkg/linter/lib/src/util/ascii_utils.dart
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
/// Ultimately we should consider carefully when we use RegExps where a simple
/// loop would do (and would do so far more performantly).
/// See: https://github.com/dart-lang/linter/issues/1828
library ascii_utils;
library;

import 'charcodes.dart';

Expand Down

0 comments on commit 1966511

Please sign in to comment.