JiriOndrusek commented on code in PR #108: URL: https://github.com/apache/camel-upgrade-recipes/pull/108#discussion_r3308869581
########## camel-upgrade-recipes/src/main/java/org/apache/camel/upgrade/camel413/YamlDsl413Recipe.java: ########## @@ -16,43 +16,22 @@ */ package org.apache.camel.upgrade.camel413; -import lombok.EqualsAndHashCode; -import lombok.Value; import org.apache.camel.upgrade.AbstractCamelYamlVisitor; import org.apache.camel.upgrade.RecipesUtil; import org.openrewrite.ExecutionContext; import org.openrewrite.Preconditions; import org.openrewrite.Recipe; import org.openrewrite.TreeVisitor; -import org.openrewrite.marker.SearchResult; -import org.openrewrite.yaml.YamlIsoVisitor; import org.openrewrite.yaml.tree.Yaml; -import java.util.Set; - /** * <p> * <a href="https://camel.apache.org/manual/camel-4x-upgrade-guide-4_13.html#_camel_yaml_dsl">YML DSL</a> * </p> * Kebab-case is changed to camelCase. */ -@EqualsAndHashCode(callSuper = false) -@Value public class YamlDsl413Recipe extends Recipe { - // Root-level keys that identify a YAML document as Camel YAML DSL, Review Comment: @Croway Even though I don't see where this code was move to or refactored to. The fact, that tests are successful is enough. Do you know, this code was never used or was not necessary? -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
