mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
move postfix templates to java-impl
This commit is contained in:
@@ -0,0 +1,5 @@
|
||||
public class Foo {
|
||||
public void bar(Foo arg) {
|
||||
arg.field<caret>
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
public class Foo {
|
||||
private Foo foo;
|
||||
|
||||
public void bar(Foo arg) {
|
||||
foo = arg;<caret>
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
public class Foo {
|
||||
public Foo(int arg) {
|
||||
arg.field<caret>
|
||||
}
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
public class Foo {
|
||||
private int foo;
|
||||
|
||||
public Foo(int arg) {
|
||||
foo = arg;<caret>
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user