Quellcode durchsuchen

Fix javadoc

tags/7.8
Julien HENRY vor 5 Jahren
Ursprung
Commit
1f58a70b3b

+ 5
- 0
sonar-plugin-api/src/main/java/org/sonar/api/batch/scm/ScmProvider.java Datei anzeigen

@@ -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"));

Laden…
Abbrechen
Speichern