@SuppressWarnings("UnusedDeclaration")
 @Nullable
 public DebuggerSession getDebugSession(final ProcessHandler processHandler) {
   synchronized (mySessions) {
     return mySessions.get(processHandler);
   }
 }
 @Override
 public DebugProcessImpl getDebugProcess(final ProcessHandler processHandler) {
   synchronized (mySessions) {
     DebuggerSession session = mySessions.get(processHandler);
     return session != null ? session.getProcess() : null;
   }
 }