Skip to content

Commit

Permalink
MassOperableHandler: minor fix to style
Browse files Browse the repository at this point in the history
  • Loading branch information
yisiox committed Feb 13, 2024
1 parent 13a8ef5 commit 28e0fdc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/earl/logic/MassOperableHandler.java
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public MassOperableHandler(String args) {
* @throws EarlException if the user input is incomprehensible
*/
protected Integer[] getValidIndices(TaskList tasks,
String args) throws EarlException {
String args) throws EarlException {
return IntervalParser.parse(args)
.filter((idx) -> 0 <= idx && idx < tasks.getSize())
.toArray(Integer[]::new);
Expand Down

0 comments on commit 28e0fdc

Please sign in to comment.