private int incrementDepth()

in Bolts/src/bolts/Task.java [44:52]


    private int incrementDepth() {
      Integer oldDepth = executionDepth.get();
      if (oldDepth == null) {
        oldDepth = 0;
      }
      int newDepth = oldDepth.intValue() + 1;
      executionDepth.set(newDepth);
      return newDepth;
    }