Skip to content

Commit

Permalink
Replace braces accidentally removed in style fix (#2043)
Browse files Browse the repository at this point in the history
  • Loading branch information
jcollins-g committed Oct 15, 2019
1 parent 065ab60 commit 06ee261
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/src/model.dart
Original file line number Diff line number Diff line change
Expand Up @@ -5322,7 +5322,7 @@ class PackageGraph {
List<String> messageParts = [warningMessage];
if (warnable != null) {
messageParts
.add("$warnablePrefix $warnableName: $warnable.location");
.add("$warnablePrefix $warnableName: ${warnable.location}");
}
if (referredFrom != null) {
for (Locatable referral in referredFrom) {
Expand Down

0 comments on commit 06ee261

Please sign in to comment.