Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Javadoc errors & warnings #233

Merged
merged 1 commit into from
Aug 25, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
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