mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2026-05-26 05:17:38 +08:00
GT-2971: Fixing merge issues.
This commit is contained in:
@@ -191,10 +191,10 @@ public class DockableComponent extends JPanel implements ContainerListener {
|
||||
* @return the provider
|
||||
*/
|
||||
public ComponentProvider getComponentProvider() {
|
||||
if (componentInfo == null) {
|
||||
if (placeholder == null) {
|
||||
return null;
|
||||
}
|
||||
return componentInfo.getProvider();
|
||||
return placeholder.getProvider();
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -202,10 +202,10 @@ public class DockableComponent extends JPanel implements ContainerListener {
|
||||
* @return the manager
|
||||
*/
|
||||
public DockingWindowManager getDockingWindowManager() {
|
||||
if (componentInfo == null) {
|
||||
if (placeholder == null) {
|
||||
return null;
|
||||
}
|
||||
return componentInfo.getNode().getDockingWindowManager();
|
||||
return placeholder.getNode().getDockingWindowManager();
|
||||
}
|
||||
|
||||
@Override
|
||||
|
||||
Reference in New Issue
Block a user