Skip to content

Commit 1a2bf97

Browse files
committed
fix: format
1 parent d82dafd commit 1a2bf97

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/deployment/src/main/java/io/quarkiverse/operatorsdk/deployment/OperatorSDKProcessor.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ void updateControllerConfigurations(
137137

138138
private void checkVersionCompatibility(String found, String expected, String name) {
139139
// optimize most common case
140-
if(Objects.equals(found, expected)) {
140+
if (Objects.equals(found, expected)) {
141141
return;
142142
}
143143
final var foundVersionOpt = getSemverFrom(found);

0 commit comments

Comments
 (0)