metrics/src/main/java/com/facebook/battery/metrics/composite/CompositeMetrics.java [28:36]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    if (result == null) {
      throw new IllegalArgumentException("CompositeMetrics doesn't support nullable results");
    }

    if (b == null) {
      result.set(this);
    } else {
      for (int i = 0, size = mMetricsMap.size(); i < size; i++) {
        Class c = mMetricsMap.keyAt(i);
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



metrics/src/main/java/com/facebook/battery/metrics/composite/CompositeMetrics.java [58:66]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    if (result == null) {
      throw new IllegalArgumentException("CompositeMetrics doesn't support nullable results");
    }

    if (b == null) {
      result.set(this);
    } else {
      for (int i = 0, size = mMetricsMap.size(); i < size; i++) {
        Class c = mMetricsMap.keyAt(i);
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



