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

Unified Diff: sdk/lib/_internal/pub/lib/src/solver/version_solver.dart

Issue 98583006: Remove extra newline in error message. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: 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
« 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/_internal/pub/lib/src/solver/version_solver.dart
diff --git a/sdk/lib/_internal/pub/lib/src/solver/version_solver.dart b/sdk/lib/_internal/pub/lib/src/solver/version_solver.dart
index d77eb824c8f9864cfa258149fda5c0958d0d6f5e..0f60499968060da5af5d82b53c19408e94b29cbd 100644
--- a/sdk/lib/_internal/pub/lib/src/solver/version_solver.dart
+++ b/sdk/lib/_internal/pub/lib/src/solver/version_solver.dart
@@ -235,7 +235,7 @@ abstract class SolveFailure implements ApplicationException {
if (dependencies.isEmpty) return _message;
var buffer = new StringBuffer();
- buffer.writeln("$_message:");
+ buffer.write("$_message:");
nweiz 2013/12/14 00:39:19 Should this have a space after it now?
Bob Nystrom 2013/12/14 00:41:08 No, there's still a newline, it's just added below
var map = {};
for (var dep in dependencies) {
« 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