Package com.atlassian.bamboo.commit

Examples of com.atlassian.bamboo.commit.Commit


    StringBuilder committersTextBuilder = new StringBuilder();
    committersTextBuilder.append("Änderungen von ");
    ImmutableList<Commit> commits = result.getCommits();
    int listSize = commits.size();
    for (int i = 0; i < listSize; i++) {
      Commit commit = commits.get(i);
      committersTextBuilder.append(commit.getAuthor().getFullName());
      if (listSize > 1) {
        if (i < listSize - 2) {
          committersTextBuilder.append(", ");
        }
        if (i == listSize - 2) {
View Full Code Here

TOP

Related Classes of com.atlassian.bamboo.commit.Commit

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.