pty: remove unused method, externally too (IDEA-CR-33111)

This commit is contained in:
Sergey Simonchik
2018-05-30 14:17:10 +03:00
parent 2662ec20ff
commit 426fbb0850
@@ -176,13 +176,4 @@ public class PtyCommandLine extends GeneralCommandLine {
.setRedirectErrorStream(isRedirectErrorStream());
return builder.start();
}
/**
* @deprecated use {@link #setConsoleMode(boolean)} and {@link #startProcessWithPty(List)} instead
*/
@NotNull
public Process startProcessWithPty(@NotNull List<String> commands, boolean console) throws IOException {
setConsoleMode(console);
return startProcessWithPty(commands);
}
}