From 14b44d05a66619c32fca4518c42dd4309eb0830c Mon Sep 17 00:00:00 2001 From: "Ilya.Kazakevich" Date: Fri, 20 Sep 2024 23:26:54 +0200 Subject: [PATCH] Python: unused symbol removed GitOrigin-RevId: 5bcc6542fbc9225629cf7b78e9cfd54cfb6df546 --- .../src/com/jetbrains/python/sdk/PySdkUtil.java | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/python/python-sdk/src/com/jetbrains/python/sdk/PySdkUtil.java b/python/python-sdk/src/com/jetbrains/python/sdk/PySdkUtil.java index 0ac95fab6181..a5e7dc3ac530 100644 --- a/python/python-sdk/src/com/jetbrains/python/sdk/PySdkUtil.java +++ b/python/python-sdk/src/com/jetbrains/python/sdk/PySdkUtil.java @@ -62,18 +62,6 @@ public final class PySdkUtil { // 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. * Waits for process for possibly limited duration.