Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(369)

Unified Diff: utils/css/tool.dart

Issue 12473003: Remove deprecated StringBuffer.add, addAll and addCharCode. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: utils/css/tool.dart
diff --git a/utils/css/tool.dart b/utils/css/tool.dart
index 6a96b50c211edf20d538c2ff98f4f757070a5280..cad31a27e5575a25d669a5a09827e0595893adbb 100644
--- a/utils/css/tool.dart
+++ b/utils/css/tool.dart
@@ -72,7 +72,7 @@ void main() {
'/* File generated by SCSS from source ${sourceFilename}\n' +
' * Do not edit.\n' +
' */\n\n');
- buff.add(stylesheet.toString());
+ buff.write(stylesheet.toString());
files.writeString(outputFullFn, buff.toString());
print("Generated file ${outputFullFn}");

Powered by Google App Engine
This is Rietveld 408576698