Skip to content

Commit

Permalink
Update ProcessContext.java: fixed crazy bug with pointless vararg for…
Browse files Browse the repository at this point in the history
… List (#712)
  • Loading branch information
hohwille authored Oct 28, 2024
1 parent 3299c26 commit 44278a9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ default ProcessContext addArgs(Object... args) {
* @param args the {@link List} of arguments for {@link #executable(Path) command} to be added.
* @return this {@link ProcessContext} for fluent API calls.
*/
default ProcessContext addArgs(List<?>... args) {
default ProcessContext addArgs(List<?> args) {

for (Object arg : args) {
addArg(arg);
Expand Down

0 comments on commit 44278a9

Please sign in to comment.