Skip to content

Commit

Permalink
undo extra change
Browse files Browse the repository at this point in the history
  • Loading branch information
khyatimahendru committed Dec 26, 2024
1 parent 2d980b9 commit 5eb1738
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -208,8 +208,7 @@ private List<MockAction> filterActions(List<MockAction> mockActions, ActionType
private List<MockAction> getMockedActions(ImmutableList<String> optArgs) {
Registrar registrar = getRegistrar(optArgs);
registrar.execute();
List<Object> actions = registrar.getMockActions();
return actions.stream().map(a -> (MockAction) a)
return registrar.getMockActions().stream().map(a -> (MockAction) a)
.collect(Collectors.toList());
}
}

0 comments on commit 5eb1738

Please sign in to comment.