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

Unified Diff: editor/tools/plugins/com.google.dart.server/src/com/google/dart/server/generated/types/SearchResult.java

Issue 581793002: Ensure for and if statements have a space after the statement keyword (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 3 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
Index: editor/tools/plugins/com.google.dart.server/src/com/google/dart/server/generated/types/SearchResult.java
diff --git a/editor/tools/plugins/com.google.dart.server/src/com/google/dart/server/generated/types/SearchResult.java b/editor/tools/plugins/com.google.dart.server/src/com/google/dart/server/generated/types/SearchResult.java
index fb0c012e98b3df85c76e7e81ec46cd023bfb6a12..19f4eac37ffb4c19e0fa9da60837f788403bbf8e 100644
--- a/editor/tools/plugins/com.google.dart.server/src/com/google/dart/server/generated/types/SearchResult.java
+++ b/editor/tools/plugins/com.google.dart.server/src/com/google/dart/server/generated/types/SearchResult.java
@@ -156,7 +156,7 @@ public class SearchResult {
jsonObject.addProperty("kind", kind);
jsonObject.addProperty("isPotential", isPotential);
JsonArray jsonArrayPath = new JsonArray();
- for(Element elt : path) {
+ for (Element elt : path) {
jsonArrayPath.add(elt.toJson());
}
jsonObject.add("path", jsonArrayPath);

Powered by Google App Engine
This is Rietveld 408576698