You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@isis.apache.org by ah...@apache.org on 2020/01/16 12:02:50 UTC

[isis] branch master updated: ISIS-2158: fix copy & paste error (previous commit)

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

ahuber pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/isis.git


The following commit(s) were added to refs/heads/master by this push:
     new 30b7ae1  ISIS-2158: fix copy & paste error (previous commit)
30b7ae1 is described below

commit 30b7ae17aa3949c5ce3762e6251ed4f0f7f20a85
Author: Andi Huber <ah...@apache.org>
AuthorDate: Thu Jan 16 13:02:43 2020 +0100

    ISIS-2158: fix copy & paste error (previous commit)
---
 .../java/org/apache/isis/core/metamodel/facets/DomainEventHelper.java   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/core/metamodel/src/main/java/org/apache/isis/core/metamodel/facets/DomainEventHelper.java b/core/metamodel/src/main/java/org/apache/isis/core/metamodel/facets/DomainEventHelper.java
index 21bcd3e..5fdde33 100644
--- a/core/metamodel/src/main/java/org/apache/isis/core/metamodel/facets/DomainEventHelper.java
+++ b/core/metamodel/src/main/java/org/apache/isis/core/metamodel/facets/DomainEventHelper.java
@@ -387,7 +387,7 @@ public class DomainEventHelper {
                                 .and(paramAssignableFromValue(2, value))
                                 );
                 for (val constructor : eventConstructors) {
-                    val event = constructor.newInstance(source, identifier, of, value);
+                    val event = constructor.newInstance(source, identifier, value);
                     return uncheckedCast(event);
                 }
             }