MethodReturnsInternalArray: False positive using a ternary operator
A source code analyzer
Brought to you by:
adangel,
juansotuyo
Would it raise a warning if you did something like:
public byte[] getContent() {
if(content == null) {
return null;
}
return content.clone();
}
Already fixed.