Skip to content

Commit cf06ae4

Browse files
committed
ARTEMIS-5816: fixups for previous examples changes
1 parent edd800c commit cf06ae4

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

examples/protocols/amqp/proton-clustered-cpp/src/main/java/org/apache/activemq/artemis/jms/example/ProtonCPPExample.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ public static void main(final String[] args) throws Exception {
8282
System.out.println("message received: " + messageReceived.getText());
8383

8484
// Sending message back to client
85-
producerAnswer.send(session.createTextMessage("HELLO from Apache Apache Artemis " + i + "!!"));
85+
producerAnswer.send(session.createTextMessage("HELLO from Apache Artemis " + i + "!!"));
8686
}
8787
} catch (Throwable e) {
8888
e.printStackTrace();

examples/protocols/amqp/proton-cpp/src/main/java/org/apache/activemq/artemis/jms/example/ProtonCPPExample.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ public static void main(final String[] args) throws Exception {
8282
System.out.println("message received: " + messageReceived.getText());
8383

8484
// Sending message back to client
85-
producerAnswer.send(session.createTextMessage("HELLO from Apache Apache Artemis " + i + "!!"));
85+
producerAnswer.send(session.createTextMessage("HELLO from Apache Artemis " + i + "!!"));
8686
}
8787
} catch (Throwable e) {
8888
e.printStackTrace();

0 commit comments

Comments
 (0)