odps-sdk/odps-sdk-udf/src/main/java/com/aliyun/odps/udf/utils/CounterUtils.java [68:76]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  private static Counters createFromJson(JsonObject obj) {
    Counters counters = new Counters();
    for (Entry<String, JsonElement> entry : obj.entrySet()) {
      String key = entry.getKey();
      CounterGroup group = counters.getGroup(key);
      fromJson(group, entry.getValue().getAsJsonObject());
    }
    return counters;
  }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



odps-sdk/odps-sdk-graph/src/main/java/com/aliyun/odps/graph/utils/CounterUtils.java [67:75]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  private static Counters createFromJson(JsonObject obj) {
    Counters counters = new Counters();
    for (Entry<String, JsonElement> entry : obj.entrySet()) {
      String key = entry.getKey();
      CounterGroup group = counters.getGroup(key);
      fromJson(group, entry.getValue().getAsJsonObject());
    }
    return counters;
  }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



