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 2021/03/06 09:20:16 UTC

[isis] branch master updated: ISIS-2553: fixes logging and java-doc

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 6580d07  ISIS-2553: fixes logging and java-doc
6580d07 is described below

commit 6580d075b648ce784fe59bedac323eed8e029094
Author: Andi Huber <ah...@apache.org>
AuthorDate: Sat Mar 6 10:20:03 2021 +0100

    ISIS-2553: fixes logging and java-doc
---
 .../org/apache/isis/applib/services/appfeat/ApplicationFeature.java    | 3 ++-
 .../isis/core/runtimeservices/publish/CommandPublisherDefault.java     | 2 +-
 2 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/api/applib/src/main/java/org/apache/isis/applib/services/appfeat/ApplicationFeature.java b/api/applib/src/main/java/org/apache/isis/applib/services/appfeat/ApplicationFeature.java
index 7c8f864..2dcf3ab 100644
--- a/api/applib/src/main/java/org/apache/isis/applib/services/appfeat/ApplicationFeature.java
+++ b/api/applib/src/main/java/org/apache/isis/applib/services/appfeat/ApplicationFeature.java
@@ -73,7 +73,8 @@ public interface ApplicationFeature {
     Optional<SemanticsOf> getActionSemantics();
 
     /** 
-     * @return {@code false} when not a property or collection 
+     * Returns whether the property or collection feature is derived.  
+     * @return always {@code false} when not a property or collection 
      */
     boolean isPropertyOrCollectionDerived();
 
diff --git a/core/runtimeservices/src/main/java/org/apache/isis/core/runtimeservices/publish/CommandPublisherDefault.java b/core/runtimeservices/src/main/java/org/apache/isis/core/runtimeservices/publish/CommandPublisherDefault.java
index 71a51fc..3794cab 100644
--- a/core/runtimeservices/src/main/java/org/apache/isis/core/runtimeservices/publish/CommandPublisherDefault.java
+++ b/core/runtimeservices/src/main/java/org/apache/isis/core/runtimeservices/publish/CommandPublisherDefault.java
@@ -75,7 +75,7 @@ public class CommandPublisherDefault implements CommandPublisher {
             return;
         }
         
-        log.debug("PUSH command: %s to %s", command, enabledSubscribers);
+        log.debug("about to PUSH command: {} to {}", command, enabledSubscribers);
 
         enabledSubscribers.forEach(subscriber -> subscriber.onCompleted(command));
     }