This is an automated email from the ASF dual-hosted git repository. acosentino pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/master by this push: new edf37c9 Fixed CS for Camel-Core edf37c9 is described below commit edf37c9702e4d1c48841e76829554581dab9067e Author: Andrea Cosentino <anco...@gmail.com> AuthorDate: Fri Apr 12 08:06:26 2019 +0200 Fixed CS for Camel-Core --- .../java/org/apache/camel/model/dataformat/JsonApiDataFormat.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/core/camel-core/src/main/java/org/apache/camel/model/dataformat/JsonApiDataFormat.java b/core/camel-core/src/main/java/org/apache/camel/model/dataformat/JsonApiDataFormat.java index e25f661..bdcb436 100644 --- a/core/camel-core/src/main/java/org/apache/camel/model/dataformat/JsonApiDataFormat.java +++ b/core/camel-core/src/main/java/org/apache/camel/model/dataformat/JsonApiDataFormat.java @@ -1,4 +1,4 @@ -/** +/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. @@ -16,14 +16,14 @@ */ package org.apache.camel.model.dataformat; -import org.apache.camel.model.DataFormatDefinition; -import org.apache.camel.spi.Metadata; - import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlRootElement; +import org.apache.camel.model.DataFormatDefinition; +import org.apache.camel.spi.Metadata; + @Metadata(firstVersion = "3.0.0", label = "dataformat,transformation", title = "jsonApi") @XmlRootElement(name = "jsonApi") @XmlAccessorType(XmlAccessType.FIELD)