Skip to content

Commit

Permalink
Fix access modifier for arg container in Edit
Browse files Browse the repository at this point in the history
protected -> private
  • Loading branch information
jia1 committed Oct 18, 2016
1 parent ba30a2d commit 683de70
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/seedu/taskman/logic/commands/EditCommand.java
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public class EditCommand extends Command {
public static final String MESSAGE_SUCCESS = "Task updated: %1$s";
public static final String MESSAGE_DUPLICATE_TASK = "A task with the same name already exists in TaskMan";

protected final ArgumentContainer argsContainer;
private final ArgumentContainer argsContainer;
private Activity beforeEdit;
private Activity afterEdit;
private Activity.ActivityType activityType;
Expand Down Expand Up @@ -123,7 +123,7 @@ private void initMembers(ArgumentContainer argsContainer) throws IllegalValueExc
}
}

protected static class ArgumentContainer {
private static class ArgumentContainer {
public final int targetIndex;
public String title;
public String deadline;
Expand Down

0 comments on commit 683de70

Please sign in to comment.