Skip to content

Commit

Permalink
Remove unnecessary extra arguments
Browse files Browse the repository at this point in the history
  • Loading branch information
navarone-feekery committed Jan 26, 2024
1 parent 5f952d3 commit 7a80b8f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@ public class GetConnectorSecretAction extends ActionType<GetConnectorSecretRespo
public static final GetConnectorSecretAction INSTANCE = new GetConnectorSecretAction();

private GetConnectorSecretAction() {
super(NAME, GetConnectorSecretResponse::new);
super(NAME);
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@ public class PostConnectorSecretAction extends ActionType<PostConnectorSecretRes
public static final PostConnectorSecretAction INSTANCE = new PostConnectorSecretAction();

private PostConnectorSecretAction() {
super(NAME, PostConnectorSecretResponse::new);
super(NAME);
}
}

0 comments on commit 7a80b8f

Please sign in to comment.