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

Unified Diff: tests/corelib/sort_helper.dart

Issue 10690039: Suppress printing while testing. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 6 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 | « tests/corelib/corelib.status ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/corelib/sort_helper.dart
diff --git a/tests/corelib/sort_helper.dart b/tests/corelib/sort_helper.dart
index 4efa33bbc1bedb346f00d44b56807ca2aaf5e66b..7c144b2394d66a77c1e25db96a4ffd75104f6d53 100644
--- a/tests/corelib/sort_helper.dart
+++ b/tests/corelib/sort_helper.dart
@@ -12,6 +12,7 @@ class SortHelper {
}
void printList(List a) {
ngeoffray 2012/07/11 11:48:49 Why don't you just remove the calls to printList a
Anton Muhin 2012/07/11 11:50:34 I didn't add them, so I didn't want to remove them
ngeoffray 2012/07/11 11:53:33 I think either me or Florian :) In any case, I pre
Anton Muhin 2012/07/11 11:55:48 np, sending you a CL in a couple of mins. On 2012
+ if (true) return;
StringBuffer buffer = new StringBuffer();
for (int i = 0; i < a.length; i++) {
if (i != 0) buffer.add(",");
« no previous file with comments | « tests/corelib/corelib.status ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698