Python: unused symbol removed

GitOrigin-RevId: 5bcc6542fbc9225629cf7b78e9cfd54cfb6df546
This commit is contained in:
Ilya.Kazakevich
2024-09-20 23:26:54 +02:00
committed by intellij-monorepo-bot
parent 0438f8093b
commit 14b44d05a6

View File

@@ -62,18 +62,6 @@ public final class PySdkUtil {
// explicitly none // explicitly none
} }
/**
* Executes a process and returns its stdout and stderr outputs as lists of lines.
*
* @param homePath process run directory
* @param command command to execute and its arguments
* @return a tuple of (stdout lines, stderr lines, exit_code), lines in them have line terminators stripped, or may be null.
*/
@NotNull
public static ProcessOutput getProcessOutput(String homePath, @NonNls String[] command) {
return getProcessOutput(homePath, command, -1);
}
/** /**
* Executes a process and returns its stdout and stderr outputs as lists of lines. * Executes a process and returns its stdout and stderr outputs as lists of lines.
* Waits for process for possibly limited duration. * Waits for process for possibly limited duration.