Skip to content

Commit

Permalink
Compiles with Primefaces 11.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
sneumann committed Oct 18, 2024
1 parent c4ce4c6 commit f30038e
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 @@ -3160,7 +3160,7 @@ public void submitFeedbackListener(ActionEvent actionEvent) {
FileStorer fileStorer = new FileStorer();
try {
StreamedContent zipContent = this.beanSettingsContainer.getUserOutputDataHandler().getDownloadParameters(this.errorMessages, null);
zipFileToAttach = fileStorer.saveUploadedFile(zipContent.getStream(), feedbackFolder.getAbsoluteFile(), "MetFragWeb_Parameters.zip");
zipFileToAttach = fileStorer.saveUploadedFile(zipContent.getStream().get(), feedbackFolder.getAbsoluteFile(), "MetFragWeb_Parameters.zip");
addMsg += "Zip: yes" + ls;
}
catch(Exception e) {
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@
<dependency>
<groupId>org.primefaces</groupId>
<artifactId>primefaces</artifactId>
<version>10.0.0</version>
<version>11.0.0</version>
</dependency>
<dependency>
<groupId>jakarta.platform</groupId>
Expand Down

0 comments on commit f30038e

Please sign in to comment.