Skip to content

Commit

Permalink
Fixes after rebase to Quarkus 3.19
Browse files Browse the repository at this point in the history
  • Loading branch information
JiriOndrusek committed Jan 24, 2025
1 parent 437c9a3 commit 4f53c66
Show file tree
Hide file tree
Showing 5 changed files with 1,000 additions and 1,002 deletions.
4 changes: 2 additions & 2 deletions docs/modules/ROOT/examples/others/observability-services.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ cqArtifactIdBase: observability-services
cqNativeSupported: true
cqStatus: Stable
cqDeprecated: false
cqJvmSince: 3.18.0
cqNativeSince: 3.18.0
cqJvmSince: 3.19.0
cqNativeSince: 3.19.0
cqCamelPartName: observability-services
cqCamelPartTitle: Observability Services
cqCamelPartDescription: Camel Observability Services
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@

import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collection;
import java.util.Collections;
import java.util.LinkedList;
import java.util.List;
Expand Down Expand Up @@ -118,8 +117,8 @@ protected CamelContext createCamelContext() {
throw new IllegalStateException("Should not be invoked");
}

public Collection<MainListener> getMainListeners() {
return Collections.unmodifiableCollection(listeners);
public List<MainListener> getMainListeners() {
return Collections.unmodifiableList(listeners);
}

public MainConfigurationProperties getMainConfigurationProperties() {
Expand Down
Loading

0 comments on commit 4f53c66

Please sign in to comment.