mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
moving tests to CE
This commit is contained in:
+2
@@ -0,0 +1,2 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<problems/>
|
||||
+4
@@ -0,0 +1,4 @@
|
||||
package p1;
|
||||
public class Base {
|
||||
protected void foo() {System.out.println("");}
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
package p2;
|
||||
import p1;
|
||||
public class Derived extends Base {
|
||||
protected void foo() {
|
||||
super.foo();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user