Skip to content

Commit 06ee261

Browse files
authored
Replace braces accidentally removed in style fix (#2043)
1 parent 065ab60 commit 06ee261

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/src/model.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5322,7 +5322,7 @@ class PackageGraph {
53225322
List<String> messageParts = [warningMessage];
53235323
if (warnable != null) {
53245324
messageParts
5325-
.add("$warnablePrefix $warnableName: $warnable.location");
5325+
.add("$warnablePrefix $warnableName: ${warnable.location}");
53265326
}
53275327
if (referredFrom != null) {
53285328
for (Locatable referral in referredFrom) {

0 commit comments

Comments
 (0)