Skip to content

Commit

Permalink
remove unused code
Browse files Browse the repository at this point in the history
  • Loading branch information
robert-virkus committed Apr 7, 2021
1 parent ff42776 commit 0e21e48
Showing 1 changed file with 0 additions and 15 deletions.
15 changes: 0 additions & 15 deletions lib/src/imap/imap_response.dart
Original file line number Diff line number Diff line change
Expand Up @@ -40,21 +40,6 @@ class ImapResponse {
lines.add(line);
}

String? _getParseText() {
if (_parseText == null) {
if (isSimple) {
_parseText = first.line;
} else {
var buffer = StringBuffer();
for (var line in lines) {
buffer.write(line.line);
}
_parseText = buffer.toString();
}
}
return _parseText;
}

ImapValueIterator iterate() {
var root = ImapValue(null, true);
ImapValue? current = root;
Expand Down

0 comments on commit 0e21e48

Please sign in to comment.