Skip to content

Commit

Permalink
LPD-33132 Get values without splitting by default separator (comma) b…
Browse files Browse the repository at this point in the history
…ecause we don't need to split it since we already have it separated
  • Loading branch information
Mikellorza authored and brianchandotcom committed Aug 12, 2024
1 parent c8fdf62 commit 07a2be7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -413,7 +413,7 @@ private List<FileEntry> _populateInputStreamOVPs(
WebKeys.THEME_DISPLAY);

String[] selectedFileNames = ParamUtil.getParameterValues(
actionRequest, "selectUploadedFile");
actionRequest, "selectUploadedFile", new String[0], false);

List<FileEntry> tempFileEntries = new ArrayList<>(
selectedFileNames.length);
Expand Down

0 comments on commit 07a2be7

Please sign in to comment.