| Index: lib/src/line_splitting/line_splitter.dart
|
| diff --git a/lib/src/line_splitting/line_splitter.dart b/lib/src/line_splitting/line_splitter.dart
|
| index 78aa54dc7d17078382643c894d62eac2ecd2af6e..420c509fe381fe06e9ebdb49ab09a2440cf80022 100644
|
| --- a/lib/src/line_splitting/line_splitter.dart
|
| +++ b/lib/src/line_splitting/line_splitter.dart
|
| @@ -130,10 +130,10 @@ class LineSplitter {
|
| int firstLineIndent,
|
| {bool flushLeft: false})
|
| : chunks = chunks,
|
| - // Collect the set of soft rules that we need to select values for.
|
| + // Collect the set of rules that we need to select values for.
|
| rules = chunks
|
| .map((chunk) => chunk.rule)
|
| - .where((rule) => rule != null && rule is! HardSplitRule)
|
| + .where((rule) => rule != null)
|
| .toSet()
|
| .toList(growable: false),
|
| blockIndentation = blockIndentation,
|
|
|