From cf801e676b981914670fee26e7dfc56a4a0280d0 Mon Sep 17 00:00:00 2001 From: Zaki <zakiamanullah215@gmail.com> Date: Tue, 31 Oct 2023 09:38:53 +0700 Subject: [PATCH] fix: bug --- src/main/java/org/spotiplay/HelloWorldService.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/org/spotiplay/HelloWorldService.java b/src/main/java/org/spotiplay/HelloWorldService.java index f585c0a..926413c 100644 --- a/src/main/java/org/spotiplay/HelloWorldService.java +++ b/src/main/java/org/spotiplay/HelloWorldService.java @@ -7,6 +7,6 @@ import javax.jws.WebService; public class HelloWorldService { @WebMethod public String sayHello(String name) { - return "kuontoool " + name; + return "Hello " + name; } } -- GitLab