KT-4344 "Overridden method parameters are not annotated" warnings from Java

#KT-4344 Fixed
This commit is contained in:
Nikolay Krasko
2014-02-13 16:15:40 +04:00
parent f14f2c19a8
commit 9a8a8364dd
7 changed files with 106 additions and 40 deletions
@@ -0,0 +1,6 @@
import org.jetbrains.annotations.NotNull;
public class Small {
void test(@NotNull String hi) {
}
}