Skip to content

Commit 69070e0

Browse files
removed unused empty method in super class
see eclipse-jdt#4300
1 parent 17d8d26 commit 69070e0

2 files changed

Lines changed: 0 additions & 6 deletions

File tree

org.eclipse.jdt.core.compiler.batch/src/org/eclipse/jdt/internal/compiler/ast/Pattern.java

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -116,11 +116,6 @@ public boolean isUnconditional(TypeBinding t, Scope scope) {
116116

117117
public abstract void generateCode(BlockScope currentScope, CodeStream codeStream, BranchLabel patternMatchLabel, BranchLabel matchFailLabel);
118118

119-
public void generateTestingConversion(BlockScope scope, CodeStream codeStream) {
120-
// TODO: MAKE THIS abstract
121-
}
122-
123-
124119
@Override
125120
public boolean checkUnsafeCast(Scope scope, TypeBinding castType, TypeBinding expressionType, TypeBinding match, boolean isNarrowing) {
126121
if (!castType.isReifiable())

org.eclipse.jdt.core.compiler.batch/src/org/eclipse/jdt/internal/compiler/ast/TypePattern.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,6 @@ public void setPatternIsTotalType() {
110110
this.isTotalTypeNode = true;
111111
}
112112

113-
@Override
114113
public void generateTestingConversion(BlockScope scope, CodeStream codeStream) {
115114
TypeBinding provided = this.outerExpressionType;
116115
TypeBinding expected = this.resolvedType;

0 commit comments

Comments
 (0)