Skip to content

Commit 555f7ba

Browse files
authored
Fix Javadoc (#494)
1 parent fabc9dd commit 555f7ba

17 files changed

+16
-24
lines changed

src/main/java/com/cloudbees/jenkins/plugins/bitbucket/BitbucketBuildStatusNotificationsTrait.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ public class BitbucketBuildStatusNotificationsTrait extends SCMSourceTrait {
5151
*/
5252
@DataBoundConstructor
5353
public BitbucketBuildStatusNotificationsTrait() {
54-
/**
54+
/*
5555
* empty constructor
5656
*/
5757
}

src/main/java/com/cloudbees/jenkins/plugins/bitbucket/avatars/AvatarCache.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -505,7 +505,7 @@ private CacheEntry(AvatarCacheSource source, BufferedImage image, long lastModif
505505
/**
506506
* Check if this entry is fetch-able
507507
*
508-
* @return
508+
* @return whether the entry can be fetched
509509
*/
510510
public boolean canFetch() {
511511
return (source != null && source.canFetch());

src/main/java/com/cloudbees/jenkins/plugins/bitbucket/client/BitbucketCloudApiClient.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -311,7 +311,7 @@ public List<BitbucketPullRequestValue> getPullRequests() throws InterruptedExcep
311311
* PRs with missing source / destination branch are invalid and should be ignored.
312312
*
313313
* @param pr a {@link BitbucketPullRequest}
314-
* @return
314+
* @return whether the PR should be ignored
315315
*/
316316
private boolean shouldIgnore(BitbucketPullRequest pr) {
317317
return pr.getSource().getRepository() == null

src/main/java/com/cloudbees/jenkins/plugins/bitbucket/endpoints/BitbucketEndpointConfiguration.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -270,7 +270,7 @@ public synchronized AbstractBitbucketEndpoint findEndpoint(@CheckForNull String
270270
* Checks to see if the supplied server URL is defined in the global configuration.
271271
*
272272
* @param serverUrl the server url to check.
273-
* @param clazz
273+
* @param clazz the class to check.
274274
* @return the global configuration for the specified server url or {@code null} if not defined.
275275
*/
276276
public synchronized Optional<AbstractBitbucketEndpoint> findEndpoint(@CheckForNull String serverUrl,

src/main/java/com/cloudbees/jenkins/plugins/bitbucket/hooks/NativeServerHeadEvent.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/**
1+
/*
22
* The MIT License
33
*
44
* Copyright (c) 2016-2018, Yieldlab AG

src/main/java/com/cloudbees/jenkins/plugins/bitbucket/hooks/NativeServerPullRequestHookProcessor.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/**
1+
/*
22
* The MIT License
33
*
44
* Copyright (c) 2016-2018, Yieldlab AG

src/main/java/com/cloudbees/jenkins/plugins/bitbucket/hooks/NativeServerPushHookProcessor.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/**
1+
/*
22
* The MIT License
33
*
44
* Copyright (c) 2016-2018, Yieldlab AG

src/main/java/com/cloudbees/jenkins/plugins/bitbucket/hooks/PingHookProcessor.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/**
1+
/*
22
* The MIT License
33
*
44
* Copyright (c) 2016-2018, Yieldlab AG

src/main/java/com/cloudbees/jenkins/plugins/bitbucket/server/BitbucketServerVersion.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/**
1+
/*
22
* The MIT License
33
*
44
* Copyright (c) 2016-2020, CloudBees Inc.

src/main/java/com/cloudbees/jenkins/plugins/bitbucket/server/BitbucketServerWebhookImplementation.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/**
1+
/*
22
* The MIT License
33
*
44
* Copyright (c) 2016-2018, Yieldlab AG

0 commit comments

Comments
 (0)