PY-83152 Cannot stop the Remote Debug Server in PyCharm 2025.2

Merge-request: IJ-MR-172033
Merged-by: Egor Eliseev <Egor.Eliseev@jetbrains.com>

(cherry picked from commit 76119033bb39c96d4fc1568d3c222bbfd76cd553)

IJ-MR-172033

GitOrigin-RevId: 634ef39ba3ba60ad2282626c676953beca12aea6
This commit is contained in:
Egor Eliseev
2025-08-11 15:45:30 +00:00
committed by intellij-monorepo-bot
parent aa7aecb630
commit 786d591b05

View File

@@ -66,7 +66,6 @@ public class ServerModeDebuggerTransport extends BaseDebuggerTransport {
}
}
finally {
synchronized (mySocketObject) {
if (!myServerSocket.isClosed()) {
try {
myServerSocket.close();
@@ -77,7 +76,6 @@ public class ServerModeDebuggerTransport extends BaseDebuggerTransport {
}
}
}
}
/**
* Server mode does not have this intermediate phase.
@@ -140,6 +138,6 @@ public class ServerModeDebuggerTransport extends BaseDebuggerTransport {
}
@Override
protected void onCommunicationError() {getDebugger().fireCommunicationError();}
protected void onCommunicationError() { getDebugger().fireCommunicationError(); }
}
}