This is an automated email from the ASF dual-hosted git repository. gnodet pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/camel.git
commit c1855339fa16c9d69c660298ce657da50dfe737d Author: Guillaume Nodet <[email protected]> AuthorDate: Fri Jan 24 13:58:27 2020 +0100 Fix minor typo --- .../src/main/java/org/apache/camel/tooling/util/JSonSchemaHelper.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tooling/camel-tooling-util/src/main/java/org/apache/camel/tooling/util/JSonSchemaHelper.java b/tooling/camel-tooling-util/src/main/java/org/apache/camel/tooling/util/JSonSchemaHelper.java index 51244d1..426a8a0 100644 --- a/tooling/camel-tooling-util/src/main/java/org/apache/camel/tooling/util/JSonSchemaHelper.java +++ b/tooling/camel-tooling-util/src/main/java/org/apache/camel/tooling/util/JSonSchemaHelper.java @@ -352,7 +352,7 @@ public final class JSonSchemaHelper { Map<?, ?> row = output.getMap(key); if (key.equals(group)) { if (parseProperties) { - // flattern each entry in the row with name as they key, and its value as the content (its a map also) + // flatten each entry in the row with name as they key, and its value as the content (its a map also) for (Object obj : row.entrySet()) { Map.Entry<?, ?> entry = (Map.Entry<?, ?>) obj; Map<String, String> newRow = new LinkedHashMap<>();
