mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-04 10:19:23 +02:00
GT-2971: Fixing merge issues.
This commit is contained in:
parent
479f595af8
commit
c7f934c9d1
1 changed files with 4 additions and 4 deletions
|
@ -191,10 +191,10 @@ public class DockableComponent extends JPanel implements ContainerListener {
|
||||||
* @return the provider
|
* @return the provider
|
||||||
*/
|
*/
|
||||||
public ComponentProvider getComponentProvider() {
|
public ComponentProvider getComponentProvider() {
|
||||||
if (componentInfo == null) {
|
if (placeholder == null) {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
return componentInfo.getProvider();
|
return placeholder.getProvider();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -202,10 +202,10 @@ public class DockableComponent extends JPanel implements ContainerListener {
|
||||||
* @return the manager
|
* @return the manager
|
||||||
*/
|
*/
|
||||||
public DockingWindowManager getDockingWindowManager() {
|
public DockingWindowManager getDockingWindowManager() {
|
||||||
if (componentInfo == null) {
|
if (placeholder == null) {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
return componentInfo.getNode().getDockingWindowManager();
|
return placeholder.getNode().getDockingWindowManager();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue