From c37d409c1d8ca28f3fbe38ee32415a226b5a8db4 Mon Sep 17 00:00:00 2001 From: Dan K Date: Fri, 19 Jul 2019 16:42:26 -0400 Subject: [PATCH] fix(ch4s4): correct syntax error --- .../example/javaserverhost/rest/ServerHostEndPoint.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/java-serverhost/src/main/java/com/redhat/training/example/javaserverhost/rest/ServerHostEndPoint.java b/java-serverhost/src/main/java/com/redhat/training/example/javaserverhost/rest/ServerHostEndPoint.java index 8d3163d..b09770a 100644 --- a/java-serverhost/src/main/java/com/redhat/training/example/javaserverhost/rest/ServerHostEndPoint.java +++ b/java-serverhost/src/main/java/com/redhat/training/example/javaserverhost/rest/ServerHostEndPoint.java @@ -19,7 +19,7 @@ public class ServerHostEndPoint { catch (Exception e) { e.printStackTrace(); } - String msg = "I am running on server "+host+" Version 1.0 \n" + String msg = "I am running on server "+host+" Version 1.0 \n"; return Response.ok(msg).build(); } }