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

Unified Diff: sdk/lib/html/html_common/lists.dart

Issue 2754013002: Format all dart: library files (Closed)
Patch Set: Format all dart: library files Created 3 years, 9 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 | « sdk/lib/html/html_common/html_common.dart ('k') | sdk/lib/html/html_common/metadata.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/html/html_common/lists.dart
diff --git a/sdk/lib/html/html_common/lists.dart b/sdk/lib/html/html_common/lists.dart
index f33d64afb9963a39e61089795580a1ed999f4f05..c7abc41cb00fb3c9dbd34e5b2b5763e57b9bc0b7 100644
--- a/sdk/lib/html/html_common/lists.dart
+++ b/sdk/lib/html/html_common/lists.dart
@@ -5,16 +5,12 @@
part of html_common;
class Lists {
-
/**
* Returns the index in the array [a] of the given [element], starting
* the search at index [startIndex] to [endIndex] (exclusive).
* Returns -1 if [element] is not found.
*/
- static int indexOf(List a,
- Object element,
- int startIndex,
- int endIndex) {
+ static int indexOf(List a, Object element, int startIndex, int endIndex) {
if (startIndex >= a.length) {
return -1;
}
« no previous file with comments | « sdk/lib/html/html_common/html_common.dart ('k') | sdk/lib/html/html_common/metadata.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698