Guest User

Untitled

a guest
Aug 19th, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. CallTreeNode child = node.getChildByName(stripCallDelims(frames[index]));
  2. if (child == null) {
  3. child = new CallTreeNode(stripCallDelims(frames[index]));
  4. }
  5. Integer w = node.getChildrens().get(child);
  6. if (w == null) {
  7. w = 0;
  8. }
  9. node.getChildrens().put(child, w + count);
  10. node = child;
Add Comment
Please, Sign In to add comment