Skip to content

Commit 7aea72e

Browse files
build(deps): bump com.puppycrawl.tools:checkstyle from 13.3.0 to 13.4.0 (#2447)
* build(deps): bump com.puppycrawl.tools:checkstyle from 13.3.0 to 13.4.0 Bumps [com.puppycrawl.tools:checkstyle](https://github.com/checkstyle/checkstyle) from 13.3.0 to 13.4.0. - [Release notes](https://github.com/checkstyle/checkstyle/releases) - [Commits](checkstyle/checkstyle@checkstyle-13.3.0...checkstyle-13.4.0) --- updated-dependencies: - dependency-name: com.puppycrawl.tools:checkstyle dependency-version: 13.4.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> * Fix JavaDoc `@see` links Signed-off-by: Michael Edgar <medgar@redhat.com> * Fix JavaDoc unordered list Signed-off-by: Michael Edgar <medgar@redhat.com> --------- Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: Michael Edgar <medgar@redhat.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Michael Edgar <medgar@redhat.com>
1 parent b00e825 commit 7aea72e

File tree

5 files changed

+9
-6
lines changed

5 files changed

+9
-6
lines changed

api/src/main/java/com/github/streamshub/console/api/support/ContextualExecutorProvider.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ public Executor currentContextExecutor() {
3030
}
3131

3232
/**
33-
* @see {@link ThreadContext#contextualRunnable(Runnable)}
33+
* @see ThreadContext#contextualRunnable(Runnable)
3434
*/
3535
public Runnable contextualRunnable(Runnable runnable) {
3636
return threadContext.contextualRunnable(runnable);

api/src/main/java/com/github/streamshub/console/api/support/Holder.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@
88
import java.util.function.Supplier;
99

1010
/**
11-
* Like {@linkplain java.util.Optional Optional}, but non-final so it may be
11+
* Like {@linkplain Optional Optional}, but non-final so it may be
1212
* used as a CDI type.
1313
*
1414
* @param <T> the type of value
15-
* @see {@link java.util.Optional}
15+
* @see Optional
1616
*/
1717
public class Holder<T> implements Supplier<T> {
1818

@@ -74,7 +74,7 @@ public T get() {
7474
}
7575

7676
/**
77-
* @see {@link java.util.Optional#map(Function)}
77+
* @see Optional#map(Function)
7878
*/
7979
public <U> Optional<U> map(Function<? super T, ? extends U> mapper) {
8080
Objects.requireNonNull(mapper);

operator/src/main/java/com/github/streamshub/console/dependents/conditions/DeploymentReadyCondition.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,9 @@ public boolean isMet(DependentResource<Deployment, Console> dependentResource, C
2323
/**
2424
* Check the deployment's status in a similar way to kubectl.
2525
*
26-
* @see https://github.com/kubernetes/kubectl/blob/24d21a0ee42ecb5e5bed731f36b2d2c9c0244c35/pkg/polymorphichelpers/rollout_status.go#L76-L89
26+
* @see <a href="https://github.com/kubernetes/kubectl/blob/24d21a0ee42ecb5e5bed731f36b2d2c9c0244c35/pkg/polymorphichelpers/rollout_status.go#L76-L89">
27+
* kubectl polymorphichelpers/rollout_status.go
28+
* </a>
2729
*/
2830
private boolean isReady(Deployment deployment) {
2931
String deploymentName = deployment.getMetadata().getName();

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,7 @@
221221
<dependency>
222222
<groupId>com.puppycrawl.tools</groupId>
223223
<artifactId>checkstyle</artifactId>
224-
<version>13.3.0</version>
224+
<version>13.4.0</version>
225225
</dependency>
226226
</dependencies>
227227
</plugin>

systemtests/src/main/java/com/github/streamshub/systemtests/setup/apicurio/ApicurioOperatorSetup.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@ public ApicurioOperatorSetup(String operatorNamespace, String watchNamespace) {
5656
/**
5757
* Prepares Apicurio Operator resources for deployment into the target namespace.
5858
*
59+
* <ul>
5960
* <li>Adjusts namespaces, normalizes RBAC bindings, removes security contexts,
6061
* and ensures the operator watches only the configured namespace by setting
6162
* the appropriate environment variable on its Deployment.</li>

0 commit comments

Comments
 (0)