! alias for not makes bulenkov happy

This commit is contained in:
Sergey Ignatov
2013-12-19 14:14:03 +04:00
parent c13888669d
commit ceee385d20
7 changed files with 18 additions and 8 deletions
@@ -0,0 +1,5 @@
public class Foo {
void m(boolean b) {
m(b!<caret>);
}
}
@@ -0,0 +1,5 @@
public class Foo {
void m(boolean b) {
m(!b<caret>);
}
}