mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
19 lines
259 B
Java
19 lines
259 B
Java
public class Sup {
|
|
|
|
}
|
|
|
|
class ExtractSuperClass extends Sup {
|
|
|
|
private final String <caret>field;
|
|
|
|
public ExtractSuperClass() {
|
|
|
|
|
|
try {
|
|
field = (String)"text";
|
|
}
|
|
catch (RuntimeException e) {
|
|
throw new RuntimeException();
|
|
}
|
|
}
|
|
} |