Skip to content

Commit

Permalink
Fixed hashCode() implementation in class ASTInformation
Browse files Browse the repository at this point in the history
JDT Internal class JavaStatusContext moved from base to util
  • Loading branch information
tsantalis committed Sep 11, 2019
1 parent 33f0fdb commit 2e3dd54
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/gr/uom/java/ast/ASTInformation.java
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ public int hashCode() {
result = 37*result + startPosition;
result = 37*result + length;
result = 37*result + nodeType;
hashCode = result;
}
return hashCode;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@
import org.eclipse.jdt.core.dom.rewrite.ImportRewrite;
import org.eclipse.jdt.core.dom.rewrite.ListRewrite;
import org.eclipse.jdt.core.refactoring.CompilationUnitChange;
import org.eclipse.jdt.internal.corext.refactoring.base.JavaStatusContext;
import org.eclipse.jdt.internal.corext.refactoring.util.JavaStatusContext;
import org.eclipse.jdt.internal.corext.refactoring.changes.CreateCompilationUnitChange;
import org.eclipse.jface.text.BadLocationException;
import org.eclipse.jface.text.Document;
Expand Down

0 comments on commit 2e3dd54

Please sign in to comment.