make intention template consistent with other java intentions

This commit is contained in:
Bas Leijdekkers
2017-01-19 13:36:21 +01:00
parent 6f44071eee
commit f735576871
2 changed files with 9 additions and 5 deletions
@@ -1,4 +1,6 @@
void m(String s1, String s2) {
if (!s1.equals(s2)) {
public class X {
void m(String s1, String s2) {
if (!s1.equals(s2)) {
}
}
}
@@ -1,4 +1,6 @@
void m(String s1, String s2) {
if (<spot>s1.compareTo(s2) != 0</spot>) {
public class X {
void m(String s1, String s2) {
if (<spot>s1.compareTo(s2) != 0</spot>) {
}
}
}
}