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

Unified Diff: dart/sdk/lib/_internal/compiler/implementation/code_buffer.dart

Issue 99303004: Remove unused API. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Address review comments Created 7 years 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: dart/sdk/lib/_internal/compiler/implementation/code_buffer.dart
diff --git a/dart/sdk/lib/_internal/compiler/implementation/code_buffer.dart b/dart/sdk/lib/_internal/compiler/implementation/code_buffer.dart
index f63a99a519dc1761a8675f83361ca68555b2901d..00baef1455a8bae174c5ec1e3d9238952ecb1dae 100644
--- a/dart/sdk/lib/_internal/compiler/implementation/code_buffer.dart
+++ b/dart/sdk/lib/_internal/compiler/implementation/code_buffer.dart
@@ -74,8 +74,6 @@ class CodeBuffer implements StringBuffer {
CodeBuffer addAll(Iterable<Object> iterable) => writeAll(iterable);
- CodeBuffer addCharCode(int charCode) => writeCharCode(charCode);
-
CodeBuffer writeCharCode(int charCode) {
buffer.writeCharCode(charCode);
return this;

Powered by Google App Engine
This is Rietveld 408576698