Skip to content

Commit

Permalink
#27540 Adding NOSCAN to avoid attributes of some builders to be marke…
Browse files Browse the repository at this point in the history
…d as duplicated.
  • Loading branch information
jgambarios committed Feb 13, 2024
1 parent 68e7091 commit f762ac1
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@
@Value.Immutable
public interface AbstractLocalFolderTraversalTaskParams extends Serializable {

// START-NOSCAN

/**
* Returns a boolean indicating whether the site exists.
*
Expand Down Expand Up @@ -64,4 +66,7 @@ default boolean siteExists() {
* @return true if the operation should fail fast, false otherwise.
*/
boolean failFast();

// END-NOSCAN

}
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@
@Value.Immutable
public interface AbstractPullTreeNodeTaskParams extends Serializable {

// START-NOSCAN

/**
* Returns the root node of the file system tree as a {@link TreeNode}.
*
Expand Down Expand Up @@ -61,4 +63,7 @@ public interface AbstractPullTreeNodeTaskParams extends Serializable {
* @return the {@link ConsoleProgressBar}
*/
ConsoleProgressBar progressBar();

// END-NOSCAN

}
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@
@Value.Immutable
public interface AbstractPushTreeNodeTaskParams extends Serializable {

// START-NOSCAN

/**
* Returns the path to the workspace directory.
*
Expand Down Expand Up @@ -75,4 +77,6 @@ default int maxRetryAttempts() {
@Nullable
ConsoleProgressBar progressBar();

// END-NOSCAN

}
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@
@Value.Immutable
public interface AbstractRemoteFolderTraversalTaskParams extends Serializable {

// START-NOSCAN

/**
* Retrieves the {@link Filter} instance used to include or exclude folders and assets.
*
Expand Down Expand Up @@ -55,4 +57,7 @@ public interface AbstractRemoteFolderTraversalTaskParams extends Serializable {
* @return true if the traversal task should fail fast, false otherwise.
*/
boolean failFast();

// END-NOSCAN

}

0 comments on commit f762ac1

Please sign in to comment.