xdebugger: method WatchesRootNode::getAllChildren restored to fix API compatibility

This commit is contained in:
nik
2016-07-18 13:44:36 +03:00
parent 727fdc413c
commit 831e338de1
@@ -88,6 +88,14 @@ public class WatchesRootNode extends XValueContainerNode<XValueContainer> {
return ContainerUtil.concat(myChildren, children);
}
/**
* @deprecated use {@link #getWatchChildren()} instead
*/
@NotNull
public List<? extends WatchNode> getAllChildren() {
return getWatchChildren();
}
@NotNull
public List<? extends WatchNode> getWatchChildren() {
return myChildren;