diff --git a/src/main/java/nl/sogyo/boilerplate/service/AccountService.java b/src/main/java/nl/sogyo/boilerplate/service/AccountService.java index 91db43f..5a086f1 100644 --- a/src/main/java/nl/sogyo/boilerplate/service/AccountService.java +++ b/src/main/java/nl/sogyo/boilerplate/service/AccountService.java @@ -9,5 +9,6 @@ public interface AccountService { public List getSavingsAccounts(); public SavingsAccount getSavingsAccount(int accountId); public void createSavingsAccount(SavingsAccount savingsAccount); - public void updateSavingsAccount(int accountId, SavingsAccount savingsAccount); + public void updateSavingsAccount(int accountId, SavingsAccount savingsAccount); //comment by sidharth + ///adding comment by Sidharth } diff --git a/src/main/java/nl/sogyo/boilerplate/web/controller/HomeController.java b/src/main/java/nl/sogyo/boilerplate/web/controller/HomeController.java index 9caa54e..2052a78 100644 --- a/src/main/java/nl/sogyo/boilerplate/web/controller/HomeController.java +++ b/src/main/java/nl/sogyo/boilerplate/web/controller/HomeController.java @@ -38,6 +38,9 @@ public void setAccountService(AccountService accountService) { public String home(Locale locale, Model model) { logger.info("Welcome home! the client locale is "+ locale.toString()); + /////// + ////Changes by Sidharth/////gjhgjhgj + model.addAttribute("serverTime", this.getFormattedDate(locale)); //model.addAttribute("serverTime", this.getSavingsAccounts());