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

Unified Diff: samples/swarm/swarm_ui_lib/util/Uri.dart

Issue 12052038: Rename new Uri.fromString to Uri.parse. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Reupload because of Error. Created 7 years, 11 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 | « runtime/bin/builtin.dart ('k') | sdk/lib/_internal/compiler/implementation/dart2js.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: samples/swarm/swarm_ui_lib/util/Uri.dart
diff --git a/samples/swarm/swarm_ui_lib/util/Uri.dart b/samples/swarm/swarm_ui_lib/util/Uri.dart
index 1d3de6a81d4f6e5ffc7555c40d4eacc277933e20..41770fb95f76f14b432bbaefd155762d53a4d75f 100644
--- a/samples/swarm/swarm_ui_lib/util/Uri.dart
+++ b/samples/swarm/swarm_ui_lib/util/Uri.dart
@@ -15,7 +15,7 @@ class Uri extends uri.Uri {
* values. For example, '?a=b&c=d&a=e' would be parsed as
* [{'a':['b','e'],'c':['d']}].
*/
- // TODO(jmesserly): consolidate with new Uri.fromString(...)
+ // TODO(jmesserly): consolidate with Uri.parse(...)
static Map<String, List<String>> parseQuery(String queryString) {
final queryParams = new Map<String, List<String>>();
if (queryString.startsWith('?')) {
« no previous file with comments | « runtime/bin/builtin.dart ('k') | sdk/lib/_internal/compiler/implementation/dart2js.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698