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

Unified Diff: sdk/lib/io/stdio.dart

Issue 25748002: Remove dead code. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 2 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/io/stdio.dart
diff --git a/sdk/lib/io/stdio.dart b/sdk/lib/io/stdio.dart
index 372552624bc00a8f78c6a90ccbd646ca7fe61cc9..766eee0b9b130c79f074cccf3ddab803f0c79eb3 100644
--- a/sdk/lib/io/stdio.dart
+++ b/sdk/lib/io/stdio.dart
@@ -29,17 +29,6 @@ class _StdStream extends Stream<List<int>> {
}
-class _StdinEventSink implements EventSink<String> {
- Function _add;
- Function _addError;
- Function _close;
- _StdinEventSink(this._add, this._addError, this._close);
-
- void add(String string) => _add(string);
- void addError(errorEvent) => _addError(errorEvent);
- void close() => _close();
-}
-
/**
* [Stdin] allows both synchronous and asynchronous reads from the standard
* input stream.
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698