[debugger] removed deprecated and unused

GitOrigin-RevId: cfef872a0f0d3ad389b7cbd1f277348462034dd1
This commit is contained in:
Egor Ushakov
2020-11-24 14:45:29 +03:00
committed by intellij-monorepo-bot
parent 06bacf2fda
commit fcee6cf715
10 changed files with 1 additions and 102 deletions

View File

@@ -32,14 +32,6 @@ public final class DisableGC implements Evaluator {
return result;
}
/**
* @deprecated use {@link #unwrap(Evaluator)} instead
*/
@Deprecated
public Evaluator getDelegate() {
return myDelegate;
}
@Override
public Modifier getModifier() {
return myDelegate.getModifier();

View File

@@ -1,23 +0,0 @@
/*
* Copyright 2000-2017 JetBrains s.r.o.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.intellij.debugger.impl;
/**
* @deprecated Use {@link DebuggerManagerListener} directly
*/
@Deprecated
public class DebuggerManagerAdapter implements DebuggerManagerListener{
}

View File

@@ -264,14 +264,6 @@ public class VirtualMachineProxyImpl implements JdiTimer, VirtualMachineProxy {
return myVirtualMachine.eventRequestManager();
}
/**
* @deprecated use {@link #mirrorOfVoid()} instead
*/
@Deprecated
public VoidValue mirrorOf() throws EvaluateException {
return mirrorOfVoid();
}
public VoidValue mirrorOfVoid() {
return myVirtualMachine.mirrorOfVoid();
}

View File

@@ -226,9 +226,6 @@ public abstract class BreakpointWithHighlighter<P extends JavaBreakpointProperti
public void reload() {
ApplicationManager.getApplication().assertReadAccessAllowed();
mySourcePosition = DebuggerUtilsEx.toSourcePosition(myXBreakpoint.getSourcePosition(), myProject);
if (mySourcePosition != null) {
reload(null);
}
}
@Nullable
@@ -319,10 +316,6 @@ public abstract class BreakpointWithHighlighter<P extends JavaBreakpointProperti
return position != null && position.getLine() == line && position.getFile().equals(file);
}
@Deprecated
protected void reload(PsiFile psiFile) {
}
@Override
public PsiClass getPsiClass() {
final SourcePosition sourcePosition = getSourcePosition();