mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-26 03:13:40 +07:00
merge completion variants with same method erasures
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
import java.util.*;
|
||||
abstract class GenericPanelControl {
|
||||
protected abstract void _performAction(List<?> rowVector);
|
||||
}
|
||||
|
||||
class WorkflowPanelControl extends GenericPanelControl {
|
||||
protected void _performAction(List rowVector) {
|
||||
}
|
||||
}
|
||||
|
||||
class WorkflowSubPanelControl extends WorkflowPanelControl {
|
||||
protected void _performAction(List rowVector) {
|
||||
super._<caret>
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,15 @@
|
||||
import java.util.*;
|
||||
abstract class GenericPanelControl {
|
||||
protected abstract void _performAction(List<?> rowVector);
|
||||
}
|
||||
|
||||
class WorkflowPanelControl extends GenericPanelControl {
|
||||
protected void _performAction(List rowVector) {
|
||||
}
|
||||
}
|
||||
|
||||
class WorkflowSubPanelControl extends WorkflowPanelControl {
|
||||
protected void _performAction(List rowVector) {
|
||||
super._performAction();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user