Added missing return keyword

This commit is contained in:
Ryan Baxter
2016-07-15 10:53:59 -04:00
parent f4a57373f7
commit dacbebdcff

View File

@@ -68,7 +68,7 @@ public class Application {
@RequestMapping("/")
public String home() {
"Hello " + name;
return "Hello " + name;
}
public static void main(String[] args) {