This is an automated email from the ASF dual-hosted git repository. orpiske pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel.git
commit f6b519501fc02e701178f8a7127c66e802d08058 Author: Otavio Rodolfo Piske <angusyo...@gmail.com> AuthorDate: Fri Jun 30 11:14:22 2023 +0200 (chores) camel-base-engine: reduce verbosity of generics code --- .../src/main/java/org/apache/camel/impl/debugger/DefaultDebugger.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/camel-base-engine/src/main/java/org/apache/camel/impl/debugger/DefaultDebugger.java b/core/camel-base-engine/src/main/java/org/apache/camel/impl/debugger/DefaultDebugger.java index 07067356959..9c01912479a 100644 --- a/core/camel-base-engine/src/main/java/org/apache/camel/impl/debugger/DefaultDebugger.java +++ b/core/camel-base-engine/src/main/java/org/apache/camel/impl/debugger/DefaultDebugger.java @@ -63,7 +63,7 @@ public class DefaultDebugger extends ServiceSupport implements Debugger, CamelCo private final List<Condition> conditions; private BreakpointConditions(Breakpoint breakpoint) { - this(breakpoint, new ArrayList<Condition>()); + this(breakpoint, new ArrayList<>()); } private BreakpointConditions(Breakpoint breakpoint, List<Condition> conditions) {