Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 7f97e23

Browse files
committedMar 27, 2024··
fix: format
Signed-off-by: Chris Laprun <claprun@redhat.com>
1 parent 1a3b46a commit 7f97e23

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed
 

‎operator-framework-core/src/main/java/io/javaoperatorsdk/operator/processing/dependent/workflow/CRDPresentActivationCondition.java

+3-2
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,8 @@ public boolean isMet(DependentResource<HasMetadata, HasMetadata> dependentResour
5959
synchronized (crdCheckState) {
6060
if (crdCheckState.isExpired()) {
6161
log.debug("Refreshing cache for resource: {}", crdName);
62-
final var found = context.getClient().resources(CustomResourceDefinition.class).withName(crdName).get() != null;
62+
final var found = context.getClient().resources(CustomResourceDefinition.class)
63+
.withName(crdName).get() != null;
6364
crdCheckState.refresh(found);
6465
}
6566
}
@@ -69,7 +70,7 @@ public boolean isMet(DependentResource<HasMetadata, HasMetadata> dependentResour
6970
static class CRDCheckState {
7071
private final ExpirationExecution expirationExecution;
7172
private boolean crdPresent;
72-
73+
7374
public CRDCheckState(ExpirationExecution expirationExecution) {
7475
this.expirationExecution = expirationExecution;
7576
}

0 commit comments

Comments
 (0)
Please sign in to comment.