| Index: pkg/compiler/lib/src/util/indentation.dart
|
| diff --git a/pkg/compiler/lib/src/util/indentation.dart b/pkg/compiler/lib/src/util/indentation.dart
|
| index ddbeafa7f11027e991e0688adaff1a2d00498712..9709f78de72268954f949ea0ea89fd740a88196b 100644
|
| --- a/pkg/compiler/lib/src/util/indentation.dart
|
| +++ b/pkg/compiler/lib/src/util/indentation.dart
|
| @@ -25,12 +25,12 @@ class Indentation {
|
| /// The indentation unit, defaulting to two spaces. May be overwritten.
|
| String _indentationUnit = " ";
|
| String get indentationUnit => _indentationUnit;
|
| - set indentationUnit(String value) {
|
| - if (value != _indentationUnit) {
|
| - _indentationUnit = value;
|
| - _indentList = <String>[""];
|
| - }
|
| - }
|
| + set indentationUnit(String value) {
|
| + if (value != _indentationUnit) {
|
| + _indentationUnit = value;
|
| + _indentList = <String>[""];
|
| + }
|
| + }
|
|
|
| /// Increases the current level of indentation.
|
| void indentMore() {
|
| @@ -53,7 +53,6 @@ class Indentation {
|
| }
|
|
|
| abstract class Tagging<N> implements Indentation {
|
| -
|
| StringBuffer sb = new StringBuffer();
|
| Link<String> tagStack = const Link<String>();
|
|
|
|
|