Skip to content

Commit

Permalink
Remove unnecessary overloading
Browse files Browse the repository at this point in the history
  • Loading branch information
Goooler committed Nov 21, 2023
1 parent 73a0de5 commit a416386
Showing 1 changed file with 1 addition and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -49,12 +49,7 @@ public static FormatterStep create(Provisioner provisioner) {
}

public static FormatterStep create(String version, Provisioner provisioner) {
return create(version, provisioner, Collections.emptyMap());
}

public static FormatterStep create(String version, Provisioner provisioner,
Map<String, Object> editorConfigOverride) {
return create(version, provisioner, null, editorConfigOverride, Collections.emptyList());
return create(version, provisioner, null, Collections.emptyMap(), Collections.emptyList());
}

public static FormatterStep create(String version,
Expand Down

0 comments on commit a416386

Please sign in to comment.