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

Unified Diff: compiler/java/com/google/dart/compiler/ast/LibraryExport.java

Issue 11226010: Issue 6073. Fixes for 'export'. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 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
Index: compiler/java/com/google/dart/compiler/ast/LibraryExport.java
diff --git a/compiler/java/com/google/dart/compiler/ast/LibraryExport.java b/compiler/java/com/google/dart/compiler/ast/LibraryExport.java
index ef1d6893b481752bb13cf8323ebc04f295ec8aac..81104f5c5c5037d025ff60a926537b8a949b6886 100644
--- a/compiler/java/com/google/dart/compiler/ast/LibraryExport.java
+++ b/compiler/java/com/google/dart/compiler/ast/LibraryExport.java
@@ -4,7 +4,6 @@
package com.google.dart.compiler.ast;
-import com.google.common.base.Objects;
import com.google.common.collect.Sets;
import java.util.List;
@@ -24,21 +23,6 @@ public class LibraryExport {
this.hideNames = createCombinatorsSet(combinators, false);
}
- @Override
- public int hashCode() {
- return Objects.hashCode(library);
- }
-
- @Override
- public boolean equals(Object obj) {
- if (obj instanceof LibraryExport) {
- LibraryExport other = (LibraryExport) obj;
- return Objects.equal(library, other.library) && Objects.equal(showNames, other.showNames)
- && Objects.equal(hideNames, other.hideNames);
- }
- return false;
- }
-
public LibraryUnit getLibrary() {
return library;
}

Powered by Google App Engine
This is Rietveld 408576698