public void addComment()

in src/main/java/com/googlesource/gerrit/plugins/its/phabricator/PhabricatorItsFacade.java [48:56]


  public void addComment(final String bugId, final String comment) throws IOException {
    int task_id = Integer.parseInt(bugId);
    try {
      conduit.maniphestEdit(task_id, comment, null, null);
    } catch (ConduitException e) {
      throw new IOException("Could not add comment for task " + task_id, e);
    }
    logger.atFine().log("Added comment %s to bug %s", comment, task_id);
  }