diff --git a/platform/xdebugger-impl/src/com/intellij/xdebugger/impl/ui/tree/nodes/WatchesRootNode.java b/platform/xdebugger-impl/src/com/intellij/xdebugger/impl/ui/tree/nodes/WatchesRootNode.java index 17795670efba..70faf4f78617 100644 --- a/platform/xdebugger-impl/src/com/intellij/xdebugger/impl/ui/tree/nodes/WatchesRootNode.java +++ b/platform/xdebugger-impl/src/com/intellij/xdebugger/impl/ui/tree/nodes/WatchesRootNode.java @@ -88,6 +88,14 @@ public class WatchesRootNode extends XValueContainerNode { return ContainerUtil.concat(myChildren, children); } + /** + * @deprecated use {@link #getWatchChildren()} instead + */ + @NotNull + public List getAllChildren() { + return getWatchChildren(); + } + @NotNull public List getWatchChildren() { return myChildren;