| |
---|
| | * @param day 日 |
---|
| | * @return そのアカウントの本に所属するtodoのうち、指定した年月日のtodoを返します |
---|
| | */ |
---|
| | public HashMap<Integer, Todo> getTodosByDay(String accountId, int bookId, int year, int month, int day){ |
---|
| | if(!todos.containsKey(accountId)){ |
---|
| | return null; |
---|
| | } |
---|
| | if(!todos.get(accountId).containsKey((bookId))){ |
---|
| | return null; |
---|
| | } |
---|
| | if(!todos.get(accountId).get(bookId).containsKey(year)){ |
---|
| | return null; |
---|
| | } |
---|
| | if(!todos.get(accountId).get(bookId).get(year).containsKey(month)){ |
---|
| |
---|
| | |
No description provided.
バグを修正しました
2fa3c77
intomaster
fromTodoManager
on 14 May