Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,6 @@ public interface AccountService {
public List<SavingsAccount> 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
}
Original file line number Diff line number Diff line change
Expand Up @@ -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());

Expand Down