mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-09 20:42:52 +07:00
java postfix templates: new castvar template IDEA-191025
This commit is contained in:
+7
@@ -0,0 +1,7 @@
|
||||
public class Foo {
|
||||
void m(Object o) {
|
||||
if (o instanceof Boolean) {
|
||||
o.castvar<caret>
|
||||
}
|
||||
}
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
public class Foo {
|
||||
void m(Object o) {
|
||||
if (o instanceof Boolean) {
|
||||
final Boolean aBoolean = (Boolean) o;
|
||||
}
|
||||
}
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
public class Foo {
|
||||
void m(Object o) {
|
||||
if (o instanceof Boolean) {
|
||||
o.castvar<caret>
|
||||
}
|
||||
}
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
public class Foo {
|
||||
void m(Object o) {
|
||||
if (o instanceof Boolean) {
|
||||
Boolean aBoolean = (Boolean) o;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user