public static Change from()

in src/main/java/com/criteo/gerrit/plugins/automerge/Change.java [41:48]


  public static Change from(ChangeAttribute changeAttribute) {
    return new Change(
        changeAttribute.project,
        changeAttribute.number,
        changeAttribute.id,
        changeAttribute.topic,
        changeAttribute.branch);
  }