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 2019/09/24 12:16:32 UTC

[isis] branch v2 updated: ISIS-2158: minor: typo

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

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


The following commit(s) were added to refs/heads/v2 by this push:
     new 9e2d81e  ISIS-2158: minor: typo
9e2d81e is described below

commit 9e2d81e028d2352c65395741a18e6b6a2e02b3be
Author: Andi Huber <ah...@apache.org>
AuthorDate: Tue Sep 24 14:16:24 2019 +0200

    ISIS-2158: minor: typo
---
 .../main/java/org/apache/isis/applib/events/domain/EventObjectBase.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/core/applib/src/main/java/org/apache/isis/applib/events/domain/EventObjectBase.java b/core/applib/src/main/java/org/apache/isis/applib/events/domain/EventObjectBase.java
index 60f2436..6668e33 100644
--- a/core/applib/src/main/java/org/apache/isis/applib/events/domain/EventObjectBase.java
+++ b/core/applib/src/main/java/org/apache/isis/applib/events/domain/EventObjectBase.java
@@ -61,7 +61,7 @@ public abstract class EventObjectBase<T> {
      */
     public void initSource(T source) {
         if(this.source!=null) {
-            throw _Exceptions.unrecoverable(getClass().getName() + " cannot init when source is alreay set");
+            throw _Exceptions.unrecoverable(getClass().getName() + " cannot init when source is already set");
         }
         requires(source, "source");
         this.source = source;