You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by ma...@apache.org on 2016/10/25 13:19:29 UTC

[14/33] activemq-artemis git commit: fixing checkstyle

fixing checkstyle


Project: http://git-wip-us.apache.org/repos/asf/activemq-artemis/repo
Commit: http://git-wip-us.apache.org/repos/asf/activemq-artemis/commit/35759725
Tree: http://git-wip-us.apache.org/repos/asf/activemq-artemis/tree/35759725
Diff: http://git-wip-us.apache.org/repos/asf/activemq-artemis/diff/35759725

Branch: refs/heads/ARTEMIS-780
Commit: 35759725febbb386e0cb63b009f1f1d5aabbc606
Parents: b1ea572
Author: Clebert Suconic <cl...@apache.org>
Authored: Mon Oct 24 12:06:25 2016 -0400
Committer: Clebert Suconic <cl...@apache.org>
Committed: Mon Oct 24 12:07:43 2016 -0400

----------------------------------------------------------------------
 .../activemq/artemis/core/example/CDIMessagingIntegrator.java      | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/activemq-artemis/blob/35759725/examples/features/sub-modules/cdi/src/main/java/org/apache/activemq/artemis/core/example/CDIMessagingIntegrator.java
----------------------------------------------------------------------
diff --git a/examples/features/sub-modules/cdi/src/main/java/org/apache/activemq/artemis/core/example/CDIMessagingIntegrator.java b/examples/features/sub-modules/cdi/src/main/java/org/apache/activemq/artemis/core/example/CDIMessagingIntegrator.java
index b4d7817..a3b530c 100644
--- a/examples/features/sub-modules/cdi/src/main/java/org/apache/activemq/artemis/core/example/CDIMessagingIntegrator.java
+++ b/examples/features/sub-modules/cdi/src/main/java/org/apache/activemq/artemis/core/example/CDIMessagingIntegrator.java
@@ -35,6 +35,6 @@ public class CDIMessagingIntegrator {
       Queue queue = context.createQueue("test");
       context.createProducer().send(queue, body);
       String receivedBody = context.createConsumer(queue).receiveBody(String.class, 5000);
-      System.out.println("Received a message "+receivedBody);
+      System.out.println("Received a message " + receivedBody);
    }
 }