[bdt] BDIDE-5200 Allow random ports for jdwp debug

GitOrigin-RevId: 9e202d97dc729c78575cf400c90197fd0569c2df
This commit is contained in:
Mihail Buryakov
2023-10-02 18:48:56 +03:00
committed by intellij-monorepo-bot
parent 51525c19a0
commit c5a437db18

View File

@@ -26,7 +26,7 @@ public class JavaDebuggerConsoleFilterProvider implements ConsoleFilterProvider
return new Filter[]{new JavaDebuggerAttachFilter()};
}
static Matcher getConnectionMatcher(String line) {
public static Matcher getConnectionMatcher(String line) {
if (line.contains("Listening for transport")) {
Matcher matcher = PATTERN.matcher(line);
if (matcher.find()) {