tests jps: test data corrections

GitOrigin-RevId: 79f08213c8a6b6302ec1502c10423cd5d44024d7
This commit is contained in:
Eugene Zhuravlev
2026-02-03 13:41:56 +00:00
committed by intellij-monorepo-bot
parent dc2f4bd7d8
commit da1ddabe49
8 changed files with 5 additions and 13 deletions
@@ -5,4 +5,4 @@ End of files
Compiling files:
src/A1.java
src/C1.java
End of files
End of files
@@ -1,3 +1,4 @@
module B {
exports qqq;
requires A;
}
@@ -2,7 +2,7 @@ package qqq2;
import qqq.Client;
public class Client {
public class ClientC {
public void perform() {
new Client().perform();
}
@@ -1,4 +0,0 @@
interface Service {
void foo();
void bar(int a);
}
@@ -1,5 +1,4 @@
interface Service {
void foo();
void bar();
}
@@ -1,4 +0,0 @@
interface Service {
void foo();
void bar(int a);
}
@@ -1,5 +1,4 @@
interface Service {
void foo();
default void bar() {}
default void bar(int a) {}
}