Skip to content

Commit 068a450

Browse files
committedDec 15, 2021
8278825: Unused variable for diagnostic in Resolve
Reviewed-by: vromero
1 parent 2def7e9 commit 068a450

File tree

1 file changed

+0
-3
lines changed
  • src/jdk.compiler/share/classes/com/sun/tools/javac/comp

1 file changed

+0
-3
lines changed
 

‎src/jdk.compiler/share/classes/com/sun/tools/javac/comp/Resolve.java

-3
Original file line numberDiff line numberDiff line change
@@ -2942,9 +2942,6 @@ Symbol access(Env<AttrContext> env, DiagnosticPosition pos, Symbol location, Sym
29422942
sym.kind != WRONG_MTHS) {
29432943
sym = super.access(env, pos, location, sym);
29442944
} else {
2945-
final JCDiagnostic details = sym.kind == WRONG_MTH ?
2946-
((InapplicableSymbolError)sym.baseSymbol()).errCandidate().snd :
2947-
null;
29482945
sym = new DiamondError(sym, currentResolutionContext);
29492946
sym = accessMethod(sym, pos, site, names.init, true, argtypes, typeargtypes);
29502947
env.info.pendingResolutionPhase = currentResolutionContext.step;

0 commit comments

Comments
 (0)
Please sign in to comment.