Browse Source

Fix javadoc

tags/7.8
Julien HENRY 5 years ago
parent
commit
1f58a70b3b

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



/** /**
* The relative path from SCM root * The relative path from SCM root
* @since 7.0
*/ */
public Path relativePathFromScmRoot(Path path) { public Path relativePathFromScmRoot(Path path) {
throw new UnsupportedOperationException(formatUnsupportedMessage("Getting relative path from SCM root")); throw new UnsupportedOperationException(formatUnsupportedMessage("Getting relative path from SCM root"));
} }


/**
* @since 7.7
*/
public IgnoreCommand ignoreCommand() { public IgnoreCommand ignoreCommand() {
throw new UnsupportedOperationException(formatUnsupportedMessage("Checking for ignored files")); throw new UnsupportedOperationException(formatUnsupportedMessage("Checking for ignored files"));
} }
/** /**
* The current revision id of the analyzed code, * The current revision id of the analyzed code,
* for example the SHA1 of the current HEAD in a Git branch. * for example the SHA1 of the current HEAD in a Git branch.
* @since 7.0
*/ */
public String revisionId(Path path) { public String revisionId(Path path) {
throw new UnsupportedOperationException(formatUnsupportedMessage("Getting revision id")); throw new UnsupportedOperationException(formatUnsupportedMessage("Getting revision id"));

Loading…
Cancel
Save