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

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

Issue 667463004: Code clean-up (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/html.dart ('k') | pkg/analyzer/lib/src/generated/parser.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/analyzer/lib/src/generated/java_core.dart
diff --git a/pkg/analyzer/lib/src/generated/java_core.dart b/pkg/analyzer/lib/src/generated/java_core.dart
index d2c9eb555e51fe284f6a205dd9087db6cde4cde6..e4e54e7532d92987f8d0a1880107bc3825718fe9 100644
--- a/pkg/analyzer/lib/src/generated/java_core.dart
+++ b/pkg/analyzer/lib/src/generated/java_core.dart
@@ -51,7 +51,6 @@ class JavaArrays {
}
return result;
}
- static List asList(List list) => list;
}
class Character {
@@ -394,18 +393,6 @@ bool javaStringRegionMatches(String t, int toffset, String o, int ooffset, int l
return t.substring(toffset, tend) == o.substring(ooffset, oend);
}
-bool javaBooleanOr(bool a, bool b) {
- return a || b;
-}
-
-bool javaBooleanAnd(bool a, bool b) {
- return a && b;
-}
-
-int javaByte(Object o) {
- return (o as int) & 0xFF;
-}
-
abstract class Enum<E extends Enum> implements Comparable<E> {
/// The name of this enum constant, as declared in the enum declaration.
final String name;
« no previous file with comments | « pkg/analyzer/lib/src/generated/html.dart ('k') | pkg/analyzer/lib/src/generated/parser.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698