mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
Avoid NPE on non-initialized form
GitOrigin-RevId: e545e2ae5cc324447f9b864d74b4d618c375aacb
This commit is contained in:
committed by
intellij-monorepo-bot
parent
58fb465684
commit
e558acfc91
@@ -1,4 +1,4 @@
|
|||||||
// Copyright 2000-2019 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file.
|
// Copyright 2000-2020 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file.
|
||||||
package com.intellij.execution.impl;
|
package com.intellij.execution.impl;
|
||||||
|
|
||||||
import com.intellij.execution.ExecutionBundle;
|
import com.intellij.execution.ExecutionBundle;
|
||||||
@@ -180,7 +180,10 @@ public final class SingleConfigurationConfigurable<Config extends RunConfigurati
|
|||||||
return getEditor();
|
return getEditor();
|
||||||
}
|
}
|
||||||
if (RUN_ON_TARGET_NAME_KEY.is(dataId)) {
|
if (RUN_ON_TARGET_NAME_KEY.is(dataId)) {
|
||||||
return ((RunOnTargetComboBox)myComponent.myRunOnComboBox).getSelectedTargetName();
|
RunOnTargetComboBox runOnComboBox = (RunOnTargetComboBox) myComponent.myRunOnComboBox;
|
||||||
|
if (runOnComboBox != null) {
|
||||||
|
return runOnComboBox.getSelectedTargetName();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
return null;
|
return null;
|
||||||
});
|
});
|
||||||
|
|||||||
Reference in New Issue
Block a user