Skip to content

Commit ff4bb47

Browse files
authored
Adjust to latest platform changes (#495)
1 parent 6235aa5 commit ff4bb47

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

containers/org.eclipse.linuxtools.docker.core/src/org/eclipse/linuxtools/internal/docker/core/DockerConnection.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2382,7 +2382,7 @@ private void openTerminal(LogStream pty_stream, String name,
23822382
}
23832383
ITerminalService service = Activator.getTerminalService();
23842384
if (service != null) {
2385-
service.openConsole(properties, null);
2385+
service.openConsole(properties);
23862386
}
23872387
} catch (Exception e) {
23882388
throw new DockerException(e);

containers/org.eclipse.linuxtools.docker.ui/src/org/eclipse/linuxtools/internal/docker/ui/commands/RemoveContainerLogCommandHandler.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ public Object execute(final ExecutionEvent event) {
5656
properties.put(ITerminalsConnectorConstants.PROP_TITLE,
5757
info.name());
5858
ITerminalService service = Activator.getTerminalService();
59-
service.closeConsole(properties, null);
59+
service.closeConsole(properties);
6060
return null;
6161
}
6262
final RunConsole rc = RunConsole.findConsole(container);

vagrant/org.eclipse.linuxtools.vagrant.ui/src/org/eclipse/linuxtools/internal/vagrant/ui/commands/SSHVMCommandHandler.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ void executeInJob(final IVagrantVM vm, IProgressMonitor monitor) {
6464
properties.put("encoding", null); //$NON-NLS-1$
6565
properties.put("timeout", 0); //$NON-NLS-1$
6666
Activator.getLaunchDelegateManager().findLauncherDelegate(connectorId, true)
67-
.ifPresent(launcherDelegate -> launcherDelegate.execute(properties, null));
67+
.ifPresent(launcherDelegate -> launcherDelegate.execute(properties));
6868
}
6969

7070
private void setupKeyPreferences(String identityFile) {

0 commit comments

Comments
 (0)