Skip to content

Commit

Permalink
#29498 Applying code review feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
jgambarios committed Oct 29, 2024
1 parent d5e7f95 commit e601cea
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@
import java.io.Reader;
import java.nio.charset.Charset;
import java.nio.charset.StandardCharsets;
import java.util.ArrayList;
import java.util.Calendar;
import java.util.Collections;
import java.util.HashMap;
Expand Down Expand Up @@ -468,7 +467,7 @@ public String[] getFields(final Job job) {
if (fields instanceof List) {
return ((List<String>) fields).toArray(new String[0]);
}

return (String[]) fields;
}

Expand Down

0 comments on commit e601cea

Please sign in to comment.