IDEA-117332 Change signature refactoring should warn about @Contract conflict

This commit is contained in:
peter
2014-02-21 15:38:38 +01:00
parent cc56534dec
commit fdee76603c
3 changed files with 27 additions and 4 deletions
@@ -0,0 +1,6 @@
class A {
@org.jetbrains.annotations.Contract("null,_->fail")
public int method<caret>(Object i, Object j) {
return 0;
}
}