History | Log In     View a printable version of the current page.  
Issue Details (XML | Word | Printable)

Key: IDEA-16358
Type: Bug Bug
Status: Open Open
Assignee: Alexey Kudravtsev
Reporter: Stephen Friedrich
Votes: 0
Watchers: 0
Operations

If you were logged in you would be able to see more operations.
IDEA: Feedback

@NotNull/Nullable problems: False inspection warning

Created: 15 Nov 07 02:08   Updated: 15 Nov 07 13:47
Component/s: Code Analysis. Inspection

Build: 7,549
Severity: Low


 Description  « Hide
Idea says that @Nullable should be added to getValue(). After using that quickfix it complains about @Nullable use on primitive type:
public class A {
    @Nullable
    private Integer value;

    public int getValue() {
        return value;
    }
}


 All   Comments   Work Log   Change History      Sort Order:
There are no comments yet on this issue.