Skip to content

Commit

Permalink
Merge pull request #233 from jglick/javadoc
Browse files Browse the repository at this point in the history
Javadoc errors & warnings
  • Loading branch information
jglick committed Aug 25, 2022
2 parents edb97f1 + 889f369 commit ab121f1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
4 changes: 2 additions & 2 deletions src/main/java/hudson/plugins/mercurial/MercurialSCM.java
Original file line number Diff line number Diff line change
Expand Up @@ -364,8 +364,8 @@ public HgBrowser getBrowser() {
}

/**
* True if we want clean check out each time. This means deleting everything in the repository checkout
* (except <tt>.hg</tt>)
* True if we want clean check out each time.
* This means deleting everything in the repository checkout (except {@code .hg}).
*/
public boolean isClean() {
return clean;
Expand Down
4 changes: 0 additions & 4 deletions src/main/java/hudson/plugins/mercurial/browser/HgBrowser.java
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,6 @@ public URL getChangeSetLink(MercurialChangeSet changeset) throws IOException {
*
* @param path to a file.
* @return URL pointing to a specific revision of the file.
*
* @throws MalformedURLException
*/
public URL getFileLink(String path) throws MalformedURLException {
throw new UnsupportedOperationException("Method is not implemented for HgBrowser");
Expand All @@ -50,8 +48,6 @@ public URL getFileLink(String path) throws MalformedURLException {
*
* @param path to a file.
* @return URL pointing to a specific revision of the file.
*
* @throws MalformedURLException
*/
public URL getDiffLink(String path) throws MalformedURLException {
throw new UnsupportedOperationException("Method is not implemented for HgBrowser");
Expand Down

0 comments on commit ab121f1

Please sign in to comment.