You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by or...@apache.org on 2024/01/05 08:16:07 UTC

(camel-performance-tests) 02/02: Removed unused variables in the ContextStartStopTest

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-performance-tests.git

commit 44d3376f6a1cdd1730a613e34bf3dd9d8d1c54d8
Author: Otavio Rodolfo Piske <an...@gmail.com>
AuthorDate: Fri Jan 5 08:41:06 2024 +0100

    Removed unused variables in the ContextStartStopTest
---
 .../test/java/org/apache/camel/itest/jmh/ContextStartStopTest.java  | 6 ------
 1 file changed, 6 deletions(-)

diff --git a/tests/camel-jmh/src/test/java/org/apache/camel/itest/jmh/ContextStartStopTest.java b/tests/camel-jmh/src/test/java/org/apache/camel/itest/jmh/ContextStartStopTest.java
index d4d8239..64c507d 100644
--- a/tests/camel-jmh/src/test/java/org/apache/camel/itest/jmh/ContextStartStopTest.java
+++ b/tests/camel-jmh/src/test/java/org/apache/camel/itest/jmh/ContextStartStopTest.java
@@ -20,10 +20,7 @@ package org.apache.camel.itest.jmh;
 import java.util.concurrent.TimeUnit;
 
 import org.apache.camel.CamelContext;
-import org.apache.camel.ExtendedCamelContext;
 import org.apache.camel.impl.DefaultCamelContext;
-import org.apache.camel.impl.engine.PrototypeExchangeFactory;
-import org.apache.camel.model.ModelCamelContext;
 import org.junit.jupiter.api.Test;
 import org.openjdk.jmh.annotations.Benchmark;
 import org.openjdk.jmh.annotations.Level;
@@ -64,9 +61,6 @@ public class ContextStartStopTest {
     public static class BenchmarkState {
 
         CamelContext context;
-        PrototypeExchangeFactory factory;
-        ExtendedCamelContext extendedCamelContext;
-        ModelCamelContext modelCamelContext;
 
         @Setup(Level.Trial)
         public void initialize() {