zyx 2 years ago
parent
commit
3d2bfae920
1 changed files with 1 additions and 2 deletions
  1. 1 2
      src/main/java/com/sxtvs/open/api/health/HealthController.java

+ 1 - 2
src/main/java/com/sxtvs/open/api/health/HealthController.java

@@ -6,7 +6,6 @@ import org.springframework.web.bind.annotation.RestController;
 @RestController
 public class HealthController {
     @RequestMapping("hello")
-    public String hello() {
-        return "ok";
+    public void hello() {
     }
 }