Remove the unused ` checkUnixSocketExists ` method from `IPCManager`.

This commit is contained in:
Gustavo Henrique Santos Souza de Miranda 2025-11-14 19:52:53 -03:00
parent f1071dca03
commit 3854635185
1 changed files with 0 additions and 4 deletions

View File

@ -110,10 +110,6 @@ public class IPCManager {
}
logger.debug("IPC configuration validated successfully");
}
private boolean checkUnixSocketExists() {
File socketFile = new File(String.valueOf(socketPath));
return socketFile.exists();
}
public Path getSocketPath(){
return socketPath;