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

Unified Diff: pkg/analyzer/lib/src/generated/java_engine.dart

Issue 660563005: Remove ArrayUtils (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 2 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 | « pkg/analyzer/lib/src/generated/element.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/analyzer/lib/src/generated/java_engine.dart
diff --git a/pkg/analyzer/lib/src/generated/java_engine.dart b/pkg/analyzer/lib/src/generated/java_engine.dart
index eb217955c60b7bfe58b33b8b4f853bd9d8f1a227..0f787cb2157948107090a8f274e725376f84a2d6 100644
--- a/pkg/analyzer/lib/src/generated/java_engine.dart
+++ b/pkg/analyzer/lib/src/generated/java_engine.dart
@@ -210,24 +210,6 @@ class FileNameUtilities {
}
}
-class ArrayUtils {
- static List add(List target, Object value) {
- target = new List.from(target);
- target.add(value);
- return target;
- }
- static List addAt(List target, int index, Object value) {
- target = new List.from(target);
- target.insert(index, value);
- return target;
- }
- static List addAll(List target, List source) {
- List result = new List.from(target);
- result.addAll(source);
- return result;
- }
-}
-
class ObjectUtilities {
static int combineHashCodes(int first, int second) => first * 31 + second;
}
« no previous file with comments | « pkg/analyzer/lib/src/generated/element.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698