From cafb4a9566d38d673fdbdcdda52d59069b25a5b1 Mon Sep 17 00:00:00 2001 From: Vladimir Krivosheev Date: Fri, 30 Aug 2013 14:23:54 +0200 Subject: [PATCH] remove deprecated method --- .../src/com/intellij/xdebugger/frame/XValue.java | 13 ++----------- 1 file changed, 2 insertions(+), 11 deletions(-) diff --git a/platform/xdebugger-api/src/com/intellij/xdebugger/frame/XValue.java b/platform/xdebugger-api/src/com/intellij/xdebugger/frame/XValue.java index e7fc07dc2fe7..011daed6f0a3 100644 --- a/platform/xdebugger-api/src/com/intellij/xdebugger/frame/XValue.java +++ b/platform/xdebugger-api/src/com/intellij/xdebugger/frame/XValue.java @@ -25,7 +25,6 @@ import org.jetbrains.annotations.Nullable; * @author nik */ public abstract class XValue extends XValueContainer { - /** * Start computing presentation of the value in the debugger tree and call {@link XValueNode#setPresentation(javax.swing.Icon, String, String, boolean)} * when computation is finished. @@ -33,15 +32,7 @@ public abstract class XValue extends XValueContainer { * @param node node * @param place where the node will be shown. */ - public void computePresentation(@NotNull XValueNode node, @NotNull XValuePlace place) { - computePresentation(node); - } - - /** - * @deprecated override {@link #computePresentation(XValueNode, XValuePlace)} instead - */ - public void computePresentation(@NotNull XValueNode node) { - } + public abstract void computePresentation(@NotNull XValueNode node, @NotNull XValuePlace place); /** * @return expression which evaluates to the current value @@ -68,4 +59,4 @@ public abstract class XValue extends XValueContainer { public void computeSourcePosition(@NotNull XNavigatable navigatable) { navigatable.setSourcePosition(null); } -} +} \ No newline at end of file