mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-18 12:31:26 +07:00
Merge remote-tracking branch 'origin/master'
GitOrigin-RevId: 211e84dab4063848c1d3d835a526271ee1466636
This commit is contained in:
committed by
intellij-monorepo-bot
parent
f9664fc455
commit
83f21c7197
@@ -37,7 +37,7 @@ public class Example {
|
||||
@NotNull Class x = <warning descr="'null' is assigned to a variable that is annotated with @NotNull">ClassUtils.primitiveToWrapper(null)</warning>;
|
||||
}
|
||||
|
||||
void writeBytes(@Nullable byte[] bytes) throws IOException {
|
||||
new FilterOutputStream(null).write(<warning descr="Argument 'bytes' might be null">bytes</warning>);
|
||||
void writeBytes(@Nullable byte[] bytes, FilterOutputStream stream) throws IOException {
|
||||
stream.write(<warning descr="Argument 'bytes' might be null">bytes</warning>);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user