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/24 10:36:27 UTC

[isis] branch master updated: ISIS-2158: some java-doc (2)

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 7d6bae3  ISIS-2158: some java-doc (2)
7d6bae3 is described below

commit 7d6bae377c4724b312fd18bb348230710e9afcb2
Author: Andi Huber <ah...@apache.org>
AuthorDate: Fri Jan 24 11:36:17 2020 +0100

    ISIS-2158: some java-doc (2)
---
 .../java/org/apache/isis/applib/services/factory/FactoryService.java    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/api/applib/src/main/java/org/apache/isis/applib/services/factory/FactoryService.java b/api/applib/src/main/java/org/apache/isis/applib/services/factory/FactoryService.java
index 5ec21be..5d86540 100644
--- a/api/applib/src/main/java/org/apache/isis/applib/services/factory/FactoryService.java
+++ b/api/applib/src/main/java/org/apache/isis/applib/services/factory/FactoryService.java
@@ -59,7 +59,6 @@ public interface FactoryService {
      * @throws IsisException if instance creation failed
      * 
      * @apiNote does not force the requiredType to be added to the meta-model
-     * 
      * @since 2.0
      */
     <T> T get(Class<T> requiredType);
@@ -72,6 +71,7 @@ public interface FactoryService {
      * @return
      * @throws IllegalArgumentException if domainClass is not an entity type  
      * @apiNote forces the domainClass to be added to the meta-model if not already
+     * @since 2.0
      */
     <T> T detachedEntity(Class<T> domainClass);