You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by lo...@apache.org on 2020/07/01 10:21:38 UTC

[myfaces-tobago] 01/02: TOBAGO-2045: Go for JavaEE 8 servers and Quarkus * compatibility with "next"

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

lofwyr pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/myfaces-tobago.git

commit 2f88ce950ce30cbc9fee9466a94da822aea97834
Author: Udo Schnurpfeil <ud...@irian.eu>
AuthorDate: Wed Jul 1 11:02:40 2020 +0200

    TOBAGO-2045: Go for JavaEE 8 servers and Quarkus
    * compatibility with "next"
---
 .../java/org/apache/myfaces/tobago/event/TobagoActionSource.java  | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/tobago-core/src/main/java/org/apache/myfaces/tobago/event/TobagoActionSource.java b/tobago-core/src/main/java/org/apache/myfaces/tobago/event/TobagoActionSource.java
index a4c9ae8..dbceea2 100644
--- a/tobago-core/src/main/java/org/apache/myfaces/tobago/event/TobagoActionSource.java
+++ b/tobago-core/src/main/java/org/apache/myfaces/tobago/event/TobagoActionSource.java
@@ -33,7 +33,7 @@ public interface TobagoActionSource extends ActionSource2 {
   /**
    * @deprecated Replaced by ActionSource2.getActionExpression
    */
-  @Override
+//  @Override no longer overriding, because it was dropped in MyFaces 2.3-next
   @Deprecated
   default MethodBinding getAction() {
     LOG.debug("JSF 1.1 style is no longer supported!");
@@ -43,7 +43,7 @@ public interface TobagoActionSource extends ActionSource2 {
   /**
    * @deprecated Replaced by ActionSource2.setActionExpression
    */
-  @Override
+//  @Override no longer overriding, because it was dropped in MyFaces 2.3-next
   @Deprecated
   default void setAction(MethodBinding action) {
     LOG.debug("JSF 1.1 style is no longer supported!");
@@ -52,7 +52,7 @@ public interface TobagoActionSource extends ActionSource2 {
   /**
    * @deprecated Replaced by getActionListeners
    */
-  @Override
+//  @Override no longer overriding, because it was dropped in MyFaces 2.3-next
   @Deprecated
   default MethodBinding getActionListener() {
     LOG.debug("JSF 1.1 style is no longer supported!");
@@ -62,7 +62,7 @@ public interface TobagoActionSource extends ActionSource2 {
   /**
    * @deprecated Replaced by getActionListeners
    */
-  @Override
+//  @Override no longer overriding, because it was dropped in MyFaces 2.3-next
   @Deprecated
   default void setActionListener(MethodBinding actionListener) {
     LOG.debug("JSF 1.1 style is no longer supported!");