mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-19 13:02:30 +07:00
notnull, @Override
This commit is contained in:
@@ -103,7 +103,7 @@ public class IpnbConvertToPythonAction extends AnAction {
|
||||
final KillableColoredProcessHandler processHandler = new KillableColoredProcessHandler(commandLine);
|
||||
processHandler.addProcessListener(new ProcessAdapter() {
|
||||
@Override
|
||||
public void processTerminated(ProcessEvent event) {
|
||||
public void processTerminated(@NotNull ProcessEvent event) {
|
||||
VfsUtil.markDirtyAndRefresh(true, false, true, virtualFile.getParent());
|
||||
}
|
||||
});
|
||||
|
||||
@@ -127,7 +127,7 @@ public class IpnbCommandLineState extends PythonCommandLineState {
|
||||
|
||||
processHandler.addProcessListener(new ProcessAdapter() {
|
||||
@Override
|
||||
public void onTextAvailable(ProcessEvent event, Key outputType) {
|
||||
public void onTextAvailable(@NotNull ProcessEvent event, @NotNull Key outputType) {
|
||||
@NonNls final String text = event.getText();
|
||||
if (text.toLowerCase().contains("active kernels")) {
|
||||
serverStarted.set(true);
|
||||
|
||||
Reference in New Issue
Block a user