mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-07 22:09:38 +07:00
test data: fix reference
GitOrigin-RevId: 54fceb43c400b18c5f7506f22880f22e435df108
This commit is contained in:
committed by
intellij-monorepo-bot
parent
074d033165
commit
10ee360f1b
@@ -3,7 +3,7 @@ import java.io.IOException;
|
||||
class Test {
|
||||
void test(String name) throws IOException {
|
||||
<selection>String s = "result";
|
||||
new ReturnIssues().withError();</selection>
|
||||
new Test().withError();</selection>
|
||||
|
||||
System.out.println(s);
|
||||
}
|
||||
|
||||
@@ -10,9 +10,9 @@ class Test {
|
||||
}
|
||||
|
||||
@NotNull
|
||||
private String newMethod() {
|
||||
private String newMethod() throws IOException {
|
||||
String s = "result";
|
||||
new ReturnIssues().withError();
|
||||
new Test().withError();
|
||||
return s;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user