mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-15 02:59:33 +07:00
test data fixed according to new name suggestions
This commit is contained in:
@@ -1,12 +1,12 @@
|
|||||||
class A {
|
class A {
|
||||||
public static final String string;
|
public static final String test2;
|
||||||
|
|
||||||
public void demo(String val){
|
public void demo(String val){
|
||||||
if ("test1".equals(val)){
|
if ("test1".equals(val)){
|
||||||
//do somethign
|
//do somethign
|
||||||
} else {
|
} else {
|
||||||
string = "test2";
|
test2 = "test2";
|
||||||
if (string.equals(val)) {
|
if (test2.equals(val)) {
|
||||||
//... something else
|
//... something else
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user