60

I'm implementing a custom data structure that gives me some properties of sets and other properties of lists. For most of the implemented methods though, I get this weird warning in IntelliJ IDEA on Java 7:

Not annotated method overrides method annotated with @NotNull

EDIT: The code below isn't relevant to the issue, but part of the original question. This warning shows up because of a bug in IntelliJ. See the answer to (hopefully) resolve your issue.


I haven't been able to find anything relevant about it and I'm not sure if I'm actually missing some sort of check, but I've looked through the source of both ArrayList and the List interface and can't see what this warning is actually about. It's on every implemented method that references the list field. Here's a snippet of the class I've made:

public class ListHashSet<T> implements List<T>, Set<T> {
private ArrayList<T> list;
private HashSet<T> set;


/**
 * Constructs a new, empty list hash set with the specified initial
 * capacity and load factor.
 *
 * @param      initialCapacity the initial capacity of the list hash set
 * @param      loadFactor      the load factor of the list hash set
 * @throws     IllegalArgumentException  if the initial capacity is less
 *               than zero, or if the load factor is nonpositive
 */
public ListHashSet(int initialCapacity, float loadFactor) {
    set = new HashSet<>(initialCapacity, loadFactor);
    list = new ArrayList<>(initialCapacity);
}
...
/**
 * The Object array representation of this collection
 * @return an Object array in insertion order
 */
@Override
public Object[] toArray() {  // warning is on this line for the toArray() method
    return list.toArray();
}

EDIT: I have these additional constructors in the class:

public ListHashSet(int initialCapacity) {
    this(initialCapacity, .75f);
}

public ListHashSet() {
    this(16, .75f);
}
Matthias Braun
  • 32,039
  • 22
  • 142
  • 171
BrDaHa
  • 5,138
  • 5
  • 32
  • 47
  • Intellij has its own NotNull annotation class. I wonder if its doing some slight of hand around the return list.toArray which is the only place you can have an NPE potential – Totoro Jun 30 '14 at 17:35
  • It's not possible for the list field to be null. Unless I missed something? – BrDaHa Jun 30 '14 at 17:47
  • there is an implicit ListHashSet() constructor added in by the compiler – Totoro Jun 30 '14 at 17:50
  • try intellij forums/support? – Totoro Jul 07 '14 at 15:26
  • 1
    I tried asking over at the IntelliJ forums, but got nowhere. This is probably a bug in IntelliJ – BrDaHa Nov 03 '14 at 07:13
  • Sometimes, it helps to add a nullability check. In my case, there was the `@ParametersAreNonnullByDefault` an annotation on both the interface and implementing class packages. However, IDEA warned me that the overridden method param is not annotated until I added `Preconditions.checkNotNull(...)` for the param in the implementing class. – Dmytro May 29 '18 at 08:45
  • It's weird I'm still getting upvotes for this question, 5 years later. No one's made a fix? – BrDaHa Oct 25 '19 at 00:24

4 Answers4

85

Try adding @Nonnull (javax.annotation.Nonnull) to the toArray method.

The warning disappeared for me when I added this annotation. I think the warning message is incorrect which says that @NotNull is missing.

Invisible Arrow
  • 4,625
  • 2
  • 23
  • 31
  • 2
    Oh man finally! that worked! So, you're suggesting that the warning saying "@NotNull is missing" is actually a typo in the warning message? – BrDaHa Jan 14 '15 at 21:26
  • 2
    For those who don't want to put an annotation on every method method in a large class, you can add `@NonNullApi` on the package level: https://stackoverflow.com/a/8405562/3362244 – teuber789 May 14 '21 at 16:20
6

I agree it's a typo on Nonnull vs. NotNull. However, there also seems to be some other bug going on. I was implementing a custom Set and it was complaining about Iterator and toArray methods not having the annotation. But, looking at the JDK, there doesn't seem to be any such annotation on the interface for Set or Collection.

http://hg.openjdk.java.net/jdk8u/jdk8u/jdk/file/0eb62e4a75e6/src/share/classes/java/util/Set.java http://hg.openjdk.java.net/jdk8u/jdk8u/jdk/file/0eb62e4a75e6/src/share/classes/java/util/Collection.java

Weird.

Anyway, the other option is to add a @SuppressWarnings tag to your class or method: @SuppressWarnings("NullableProblems")

doku
  • 81
  • 1
  • 3
0

Try adding:

private ListHashSet() {}
enrico.bacis
  • 30,497
  • 10
  • 86
  • 115
Totoro
  • 615
  • 5
  • 11
  • I actually had these additional constructors (Updated in the original question) ^ – BrDaHa Jun 30 '14 at 18:47
  • This isn't the cause, but you think you might want to set list here? private ArrayList getList() { return list != null ? list : new ArrayList(); } – Totoro Jun 30 '14 at 20:52
0

I also face the same and solve it by adding package-info.java for that package. Under package-info.java added annotation @NonNullApi. my package-info.java looks like -

@NonNullApi
package org.example.auth.repositories;

import org.springframework.lang.NonNullApi;
Pravind Kumar
  • 809
  • 1
  • 11
  • 10