| 9 | import java.util.HashMap; |
| 10 | |
| 11 | @Controller |
| 12 | @RequestMapping("/") |
| 13 | public class HomeController { |
| 14 | @RequestMapping("/") |
| 15 | public String show(Model model){ |
| 16 | model= CommonUtils.modelSet(new HashMap<>(),model); |
| 17 | return "index"; |
| 18 | } |
| 19 | } |
nothing calls this directly
no outgoing calls
no test coverage detected