File tree Expand file tree Collapse file tree 1 file changed +2
-4
lines changed
src/main/java/seedu/algobase/logic/parser Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -55,11 +55,9 @@ public FindPlanCommand parse(String args) throws ParseException {
5555 FindPlanDescriptor findPlanDescriptor = new FindPlanDescriptor ();
5656
5757 if (argumentMultimap .getValue (PREFIX_NAME ).isPresent ()) {
58- List <String > planNameKeywords =
59- getArgumentValueAsList (argumentMultimap .getValue (PREFIX_NAME ).get ());
58+ List <String > planNameKeywords = getArgumentValueAsList (argumentMultimap .getValue (PREFIX_NAME ).get ());
6059 List <Keyword > keywords = planNameKeywords .stream ().map (Keyword ::new ).collect (Collectors .toList ());
61- findPlanDescriptor .setPlanNamePredicate (
62- new PlanNameContainsKeywordsPredicate (keywords ));
60+ findPlanDescriptor .setPlanNamePredicate (new PlanNameContainsKeywordsPredicate (keywords ));
6361 }
6462
6563 if (argumentMultimap .getValue (PREFIX_DESCRIPTION ).isPresent ()) {
You can’t perform that action at this time.
0 commit comments