This is an automated email from the ASF dual-hosted git repository.

solomax pushed a commit to branch 4.0.x
in repository https://gitbox.apache.org/repos/asf/openmeetings.git


The following commit(s) were added to refs/heads/4.0.x by this push:
     new 5b81342  [OPENMEETINGS-2088] compile time error is fixed
5b81342 is described below

commit 5b81342f4d03d231bda2c0696611727898ed4722
Author: Maxim Solodovnik <[email protected]>
AuthorDate: Fri Jul 19 11:38:45 2019 +0700

    [OPENMEETINGS-2088] compile time error is fixed
---
 .../java/org/apache/openmeetings/web/room/sidebar/UploadDialog.java    | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git 
a/openmeetings-web/src/main/java/org/apache/openmeetings/web/room/sidebar/UploadDialog.java
 
b/openmeetings-web/src/main/java/org/apache/openmeetings/web/room/sidebar/UploadDialog.java
index 8f59882..5a4428b 100644
--- 
a/openmeetings-web/src/main/java/org/apache/openmeetings/web/room/sidebar/UploadDialog.java
+++ 
b/openmeetings-web/src/main/java/org/apache/openmeetings/web/room/sidebar/UploadDialog.java
@@ -75,9 +75,10 @@ public class UploadDialog extends AbstractFormDialog<String> 
{
        private static final long serialVersionUID = 1L;
        private static final Logger log = 
Red5LoggerFactory.getLogger(UploadDialog.class, getWebAppRootKey());
        private final KendoFeedbackPanel feedback = new 
KendoFeedbackPanel("feedback", new Options("button", true));
-       private final Form<String> form = new Form<>("form") {
+       private final Form<String> form = new Form<String>("form") {
                private static final long serialVersionUID = 1L;
 
+               @Override
                protected boolean handleMultiPart() {
                        try {
                                return super.handleMultiPart();

Reply via email to