Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJay Arthanareeswaran2019-04-10 04:21:14 +0000
committerJay Arthanareeswaran2019-04-10 04:21:50 +0000
commite02468a7bc0b2cff9836c86b53ef3cf683712e20 (patch)
tree9e7736eec4ad56d29fccbce1db771efab3e659f7
parent4ae6e3dc7e90cc8fa4f2d38918bce0fd7521a18e (diff)
downloadeclipse.jdt.core-e02468a7bc0b2cff9836c86b53ef3cf683712e20.tar.gz
eclipse.jdt.core-e02468a7bc0b2cff9836c86b53ef3cf683712e20.tar.xz
eclipse.jdt.core-e02468a7bc0b2cff9836c86b53ef3cf683712e20.zip
Bug 545082 - Fix warnings in JavadocI20190410-0600
Change-Id: I42779d1c858ce0d996a79331467e9783ba1b01bf Signed-off-by: Jay Arthanareeswaran <jarthana@in.ibm.com>
-rw-r--r--org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/lookup/CompilationUnitScope.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/lookup/CompilationUnitScope.java b/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/lookup/CompilationUnitScope.java
index 328433fe9a..453f97c4ab 100644
--- a/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/lookup/CompilationUnitScope.java
+++ b/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/lookup/CompilationUnitScope.java
@@ -60,7 +60,7 @@ public class CompilationUnitScope extends Scope {
boolean connectingHierarchy;
private ArrayList<Invocation> inferredInvocations;
- /** Cache of interned inference variables. Access only via {@link InferenceVariable#get(TypeBinding, int, InvocationSite, Scope, ReferenceBinding)}. */
+ /** Cache of interned inference variables. Access only via {@link InferenceVariable#get(TypeBinding, int, InvocationSite, Scope, ReferenceBinding, boolean)}. */
Map<InferenceVariable.InferenceVarKey, InferenceVariable> uniqueInferenceVariables = new HashMap<>();
public CompilationUnitScope(CompilationUnitDeclaration unit, LookupEnvironment environment) {

Back to the top