mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-26 03:51:12 +07:00
Fixes IDEA-240571 "implement method" action works bad with arrays notnulled twice GitOrigin-RevId: 3014f528f6af966153ae4dc8c821240fca3d9d79
16 lines
357 B
Java
16 lines
357 B
Java
// "Implement methods" "true"
|
|
package org.jetbrains.annotations;
|
|
|
|
import java.lang.annotation.*;
|
|
|
|
abstract class Test {
|
|
abstract void foo(@NotNull String @NotNull[] data);
|
|
|
|
abstract void foo2(@NotNull String @NotNull ... data);
|
|
}
|
|
|
|
<caret>class TImple extends Test {}
|
|
|
|
@Target({ElementType.PARAMETER, ElementType.TYPE_USE})
|
|
@interface NotNull {}
|