Examples of scmRevisionsByLine()


Examples of org.sonar.batch.protocol.input.FileData.scmRevisionsByLine()

    FileData fileData = projectReferentials.fileData(projectDefinition.getKeyWithBranch(), f.relativePath());

    if (f.status() == Status.SAME && fileData != null) {
      String scmAuthorsByLine = fileData.scmAuthorsByLine();
      String scmLastCommitDatetimesByLine = fileData.scmLastCommitDatetimesByLine();
      String scmRevisionsByLine = fileData.scmRevisionsByLine();
      if (scmAuthorsByLine != null
        && scmLastCommitDatetimesByLine != null
        && scmRevisionsByLine != null) {
        saveMeasures(context, f, scmAuthorsByLine, scmLastCommitDatetimesByLine, scmRevisionsByLine);
      } else {
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.