Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -2382,7 +2382,7 @@ private void openTerminal(LogStream pty_stream, String name,
}
ITerminalService service = Activator.getTerminalService();
if (service != null) {
service.openConsole(properties, null);
service.openConsole(properties);
}
} catch (Exception e) {
throw new DockerException(e);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ public Object execute(final ExecutionEvent event) {
properties.put(ITerminalsConnectorConstants.PROP_TITLE,
info.name());
ITerminalService service = Activator.getTerminalService();
service.closeConsole(properties, null);
service.closeConsole(properties);
return null;
}
final RunConsole rc = RunConsole.findConsole(container);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ void executeInJob(final IVagrantVM vm, IProgressMonitor monitor) {
properties.put("encoding", null); //$NON-NLS-1$
properties.put("timeout", 0); //$NON-NLS-1$
Activator.getLaunchDelegateManager().findLauncherDelegate(connectorId, true)
.ifPresent(launcherDelegate -> launcherDelegate.execute(properties, null));
.ifPresent(launcherDelegate -> launcherDelegate.execute(properties));
}

private void setupKeyPreferences(String identityFile) {
Expand Down