]> source.dussan.org Git - sonarqube.git/commitdiff
Fix javadoc
authorJulien HENRY <julien.henry@sonarsource.com>
Mon, 8 Apr 2019 07:48:32 +0000 (09:48 +0200)
committerSonarTech <sonartech@sonarsource.com>
Mon, 8 Apr 2019 18:21:05 +0000 (20:21 +0200)
sonar-plugin-api/src/main/java/org/sonar/api/batch/scm/ScmProvider.java

index 5a354933fac55a7403bc8b3dd74f048a24080192..8fb7aa2d99845c2c1df5e3a17a3a754dd626b522 100644 (file)
@@ -82,11 +82,15 @@ public abstract class ScmProvider {
 
   /**
    * The relative path from SCM root
+   * @since 7.0
    */
   public Path relativePathFromScmRoot(Path path) {
     throw new UnsupportedOperationException(formatUnsupportedMessage("Getting relative path from SCM root"));
   }
 
+  /**
+   * @since 7.7
+   */
   public IgnoreCommand ignoreCommand() {
     throw new UnsupportedOperationException(formatUnsupportedMessage("Checking for ignored files"));
   }
@@ -94,6 +98,7 @@ public abstract class ScmProvider {
   /**
    * The current revision id of the analyzed code,
    * for example the SHA1 of the current HEAD in a Git branch.
+   * @since 7.0
    */
   public String revisionId(Path path) {
     throw new UnsupportedOperationException(formatUnsupportedMessage("Getting revision id"));