When I try Ctrl-Space in the following code
(the cursor is after "obj i"), it doesn't
expand to "instanceof".
==========================================
class Test {
public boolean equals(Object obj) {
if (!(obj i|)) {
}
}
}
==========================================
At the same time if you try it in a similar
code (without "!(...)"), it does expand to
"instanceof".
==========================================
class Test {
public boolean equals(Object obj) {
if (obj i|) {
}
}
}
==========================================
Timur Zambalayev
_______________________________________________
Eap-list mailing list
[EMAIL PROTECTED]
http://www.intellij.com/mailman/listinfo/eap-list