| Index: lib/src/rule/argument.dart
|
| diff --git a/lib/src/rule/argument.dart b/lib/src/rule/argument.dart
|
| index 8e08fba37414278cd14cf63eb7e1378b7dc9e49a..813bfb1087dba662b5bf0bbfaaf10fa54ab317ee 100644
|
| --- a/lib/src/rule/argument.dart
|
| +++ b/lib/src/rule/argument.dart
|
| @@ -113,9 +113,8 @@ class SinglePositionalRule extends PositionalRule {
|
| /// split before the argument if the argument itself contains a split.
|
| SinglePositionalRule(Rule collectionRule, {bool splitsOnInnerRules})
|
| : super(collectionRule),
|
| - splitsOnInnerRules = splitsOnInnerRules
|
| - != null
|
| - ? splitsOnInnerRules : false;
|
| + splitsOnInnerRules =
|
| + splitsOnInnerRules != null ? splitsOnInnerRules : false;
|
|
|
| bool isSplit(int value, Chunk chunk) => value == 1;
|
|
|
|
|