andi-huber opened a new pull request, #1844:
URL: https://github.com/apache/causeway/pull/1844

   Framework does not support constructs like ...
   
   ```java
   public abstract class Example<T> {
       
       T abstract sampleAction(@Nullable final T value) ;
   }
   
   public class StringExample extends Example<String> {
       @Action @Override
       public String sampleAction(@Parameter @Nullable final String value) {
           return value;
       }
   }
   ```
   
   Method signatures differ at runtime, hence the introspection picks up 2 
actions on the latter type while it should only one. 
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to