8294567: IGV: IllegalStateException in search
Reviewed-by: rcastanedalo, chagedorn, kvn
This commit is contained in:
parent
bc668b994d
commit
6e8f0387d6
@ -49,7 +49,7 @@ public class EditorInputGraphProvider implements InputGraphProvider {
|
||||
|
||||
@Override
|
||||
public InputGraph getGraph() {
|
||||
if (editor != null && editor.isOpened()) {
|
||||
if (editor != null) {
|
||||
return editor.getModel().getGraphToView();
|
||||
} else {
|
||||
return null;
|
||||
@ -58,14 +58,14 @@ public class EditorInputGraphProvider implements InputGraphProvider {
|
||||
|
||||
@Override
|
||||
public void setSelectedNodes(Set<InputNode> nodes) {
|
||||
if (editor != null && editor.isOpened()) {
|
||||
if (editor != null) {
|
||||
editor.setSelectedNodes(nodes);
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public Iterable<InputGraph> searchBackward() {
|
||||
if (editor != null && editor.isOpened()) {
|
||||
if (editor != null) {
|
||||
return editor.getModel().getGraphsBackward();
|
||||
} else {
|
||||
return null;
|
||||
@ -74,7 +74,7 @@ public class EditorInputGraphProvider implements InputGraphProvider {
|
||||
|
||||
@Override
|
||||
public Iterable<InputGraph> searchForward() {
|
||||
if (editor != null && editor.isOpened()) {
|
||||
if (editor != null) {
|
||||
return editor.getModel().getGraphsForward();
|
||||
} else {
|
||||
return null;
|
||||
|
Loading…
x
Reference in New Issue
Block a user