Remove an empty statement

This commit is contained in:
jvoisin
2019-08-01 10:30:26 +02:00
parent 61c8fbc5e2
commit ba9d3ff539
@@ -48,7 +48,7 @@ public class GettingStartedController {
return new ModelAndView(new RedirectView("home.view"));
}
Map<String, Object> map = new HashMap<>();;
Map<String, Object> map = new HashMap<>();
map.put("runningAsRoot", "root".equals(System.getProperty("user.name")));
return new ModelAndView("gettingStarted", "model", map);
}