Skip to content

Commit

Permalink
Delete now unused _indent helper method in serialize.dart.
Browse files Browse the repository at this point in the history
  • Loading branch information
nickbehrens committed Oct 16, 2019
1 parent 0fbaea2 commit 7342836
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions lib/src/visitor/serialize.dart
Expand Up @@ -1190,13 +1190,6 @@ class _SerializeVisitor
/// Returns a comma used to separate values in lists.
String get _commaSeparator => _isCompressed ? "," : ", ";

/// Runs [callback] with indentation increased one level.
void _indent(void callback()) {
_indentation++;
callback();
_indentation--;
}

/// Returns whether [node] is considered invisible.
bool _isInvisible(CssNode node) {
if (_inspect) return false;
Expand Down

0 comments on commit 7342836

Please sign in to comment.