Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTill Brychcy2017-03-19 18:56:38 +0000
committerStefan Xenos2017-03-24 00:49:34 +0000
commitf06f1295ac189b0e2cfbdb95c154467d2b2214c1 (patch)
tree718073787e8a193be053d853d01b092e7a0ebf0b /org.eclipse.jdt.core
parent823c9ddd71537118b17b028f2c504b1e97c6e35c (diff)
downloadeclipse.jdt.core-f06f1295ac189b0e2cfbdb95c154467d2b2214c1.tar.gz
eclipse.jdt.core-f06f1295ac189b0e2cfbdb95c154467d2b2214c1.tar.xz
eclipse.jdt.core-f06f1295ac189b0e2cfbdb95c154467d2b2214c1.zip
Bug 513875 - [newindex][null][1.8] Bogus Warning about Contradictory
null annotations only in the editor Change-Id: I524c962173ba71c3b7470e66315f1051b6e73f2f
Diffstat (limited to 'org.eclipse.jdt.core')
-rw-r--r--org.eclipse.jdt.core/search/org/eclipse/jdt/internal/core/nd/java/model/IndexBinaryType.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/org.eclipse.jdt.core/search/org/eclipse/jdt/internal/core/nd/java/model/IndexBinaryType.java b/org.eclipse.jdt.core/search/org/eclipse/jdt/internal/core/nd/java/model/IndexBinaryType.java
index aaa7576a2b..4d5023b4de 100644
--- a/org.eclipse.jdt.core/search/org/eclipse/jdt/internal/core/nd/java/model/IndexBinaryType.java
+++ b/org.eclipse.jdt.core/search/org/eclipse/jdt/internal/core/nd/java/model/IndexBinaryType.java
@@ -423,7 +423,7 @@ public class IndexBinaryType implements IBinaryType {
case AnnotationTargetTypeConstants.METHOD_RECEIVER:
break;
case AnnotationTargetTypeConstants.METHOD_FORMAL_PARAMETER :
- info = next.getTargetInfoArg0();
+ info = next.getTarget();
break;
case AnnotationTargetTypeConstants.THROWS :
info = next.getTarget();

Back to the top