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 7e9b071377933b8c6b54e3e286223033b2f2e857 Author: Otavio Rodolfo Piske <[email protected]> AuthorDate: Mon Aug 26 17:19:24 2024 +0200 (chores) camel-core: fixed incorrect package name --- .../src/test/java/org/apache/camel/model/TryDefinitionTest.java | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/core/camel-core-model/src/test/java/org/apache/camel/model/TryDefinitionTest.java b/core/camel-core-model/src/test/java/org/apache/camel/model/TryDefinitionTest.java index 10fbfd72231..531fd51d088 100644 --- a/core/camel-core-model/src/test/java/org/apache/camel/model/TryDefinitionTest.java +++ b/core/camel-core-model/src/test/java/org/apache/camel/model/TryDefinitionTest.java @@ -14,14 +14,10 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package org.apache.camel.model.rest; +package org.apache.camel.model; import java.util.List; -import org.apache.camel.model.CatchDefinition; -import org.apache.camel.model.FinallyDefinition; -import org.apache.camel.model.ToDefinition; -import org.apache.camel.model.TryDefinition; import org.junit.jupiter.api.Assertions; import org.junit.jupiter.api.Test;
