fix testdata

This commit is contained in:
Anna.Kozlova
2016-12-29 10:40:15 +01:00
parent b9450f6143
commit cbc1dadaae
2 changed files with 2 additions and 2 deletions

View File

@@ -1,7 +1,7 @@
class Test {
void foo() {
<selection>final String str = "";
if (str == "") {
if (str == "a") {
return;
}</selection>
new Runnable() {

View File

@@ -14,7 +14,7 @@ class Test {
@Nullable
private String newMethod() {
final String str = "";
if (str == "") {
if (str == "a") {
return null;
}
return str;