You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by da...@apache.org on 2020/09/03 12:42:45 UTC

[camel] 02/03: Fixed CS

This is an automated email from the ASF dual-hosted git repository.

davsclaus pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git

commit 495c9bdf4e6c4f3b178a933ac9fc9b25a471be9d
Author: Claus Ibsen <cl...@gmail.com>
AuthorDate: Thu Sep 3 14:12:35 2020 +0200

    Fixed CS
---
 .../src/test/resources/AddressGateway.java                              | 2 ++
 .../src/test/resources/CustomerGateway.java                             | 2 ++
 .../src/test/resources/DisputeGateway.java                              | 2 ++
 3 files changed, 6 insertions(+)

diff --git a/tooling/maven/camel-api-component-maven-plugin/src/test/resources/AddressGateway.java b/tooling/maven/camel-api-component-maven-plugin/src/test/resources/AddressGateway.java
index 14c25d7..22c186c 100644
--- a/tooling/maven/camel-api-component-maven-plugin/src/test/resources/AddressGateway.java
+++ b/tooling/maven/camel-api-component-maven-plugin/src/test/resources/AddressGateway.java
@@ -14,6 +14,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+//CHECKSTYLE:OFF
 package com.braintreegateway;
 
 import com.braintreegateway.exceptions.NotFoundException;
@@ -88,3 +89,4 @@ public class AddressGateway {
         return new Result<Address>(node, Address.class);
     }
 }
+//CHECKSTYLE:ON
\ No newline at end of file
diff --git a/tooling/maven/camel-api-component-maven-plugin/src/test/resources/CustomerGateway.java b/tooling/maven/camel-api-component-maven-plugin/src/test/resources/CustomerGateway.java
index aad12dc..977d179 100644
--- a/tooling/maven/camel-api-component-maven-plugin/src/test/resources/CustomerGateway.java
+++ b/tooling/maven/camel-api-component-maven-plugin/src/test/resources/CustomerGateway.java
@@ -14,6 +14,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+//CHECKSTYLE:OFF
 package com.braintreegateway;
 
 import com.braintreegateway.exceptions.NotFoundException;
@@ -152,3 +153,4 @@ public class CustomerGateway {
     }
 
 }
+//CHECKSTYLE:ON
\ No newline at end of file
diff --git a/tooling/maven/camel-api-component-maven-plugin/src/test/resources/DisputeGateway.java b/tooling/maven/camel-api-component-maven-plugin/src/test/resources/DisputeGateway.java
index 69c1d46..ca8aacb 100644
--- a/tooling/maven/camel-api-component-maven-plugin/src/test/resources/DisputeGateway.java
+++ b/tooling/maven/camel-api-component-maven-plugin/src/test/resources/DisputeGateway.java
@@ -14,6 +14,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+//CHECKSTYLE:OFF
 package com.braintreegateway;
 
 import com.braintreegateway.exceptions.NotFoundException;
@@ -259,3 +260,4 @@ public class DisputeGateway {
         return new PaginatedResult<Dispute>(response.findInteger("total-items"), response.findInteger("page-size"), disputes);
     }
 }
+//CHECKSTYLE:ON