Skip to content

Commit

Permalink
Merge pull request #183 from offa/javadoc
Browse files Browse the repository at this point in the history
Fix some Javadoc issues
  • Loading branch information
jglick committed Jan 4, 2023
2 parents d6ddf12 + 103daea commit 8f4e7ab
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/main/java/jenkins/scm/api/SCMFileSystem.java
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ public final boolean isFixedRevision() {
* Short for {@code getRoot().child(path)}.
*
* @param path Path of the SCMFile to obtain from the root of the repository.
* @return null if there's no file/directory at the requested path.
* @return Child path
*/
@NonNull
public final SCMFile child(@NonNull String path) {
Expand Down
6 changes: 3 additions & 3 deletions src/main/java/jenkins/scm/api/SCMSource.java
Original file line number Diff line number Diff line change
Expand Up @@ -61,11 +61,11 @@
* A {@link SCMSource} is responsible for fetching {@link SCMHead} and corresponding {@link SCMRevision} instances from
* which it can build {@link SCM} instances that are configured to check out the specific {@link SCMHead} at the
* specified {@link SCMRevision}.
*
* <p>
* Each {@link SCMSource} is owned by a {@link SCMSourceOwner}, if you need to find all the owners use
* {@link SCMSourceOwners#all()} to iterate through them, e.g. to notify {@link SCMSource} instances of push
* notification from the server they source {@link SCMHead}s from.
*
* <p>
* <strong>NOTE:</strong> This layer does not cache remote calls but can cache intermediary results. For example,
* with Subversion it is acceptable to cache the last revisions of various directory entries to minimize network
* round trips, but any of the calls to {@link #fetch(TaskListener)},
Expand Down Expand Up @@ -994,7 +994,7 @@ public boolean canProbe() {

/**
* Creates a {@link SCMProbe} for the specified {@link SCMHead} and {@link SCMRevision}.
*
* <p>
* Public exposed API for {@link #createProbe(SCMHead, SCMRevision)}.
* @param head the {@link SCMHead}.
* @param revision the {@link SCMRevision}.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
/**
*
* Interface for Avatar Cache Item Source
*
* <p>
* This defines a source for avatar to be ached and implementation to fetch it
*/
public interface AvatarImageSource {
Expand Down

0 comments on commit 8f4e7ab

Please sign in to comment.