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/06 12:06:04 UTC

[isis] branch master updated: ISIS-2183: minor: cleaning up 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 9261c59  ISIS-2183: minor: cleaning up java-doc
9261c59 is described below

commit 9261c59b007586aafadf8ed288f048ba3ee097d1
Author: Andi Huber <ah...@apache.org>
AuthorDate: Mon Jan 6 13:05:37 2020 +0100

    ISIS-2183: minor: cleaning up java-doc
---
 .../viewer/wicket/viewer/wicketapp/IsisWicketApplication.java  | 10 ++--------
 1 file changed, 2 insertions(+), 8 deletions(-)

diff --git a/core/viewers/wicket/viewer/src/main/java/org/apache/isis/viewer/wicket/viewer/wicketapp/IsisWicketApplication.java b/core/viewers/wicket/viewer/src/main/java/org/apache/isis/viewer/wicket/viewer/wicketapp/IsisWicketApplication.java
index 3e1c87b..c36e6bc 100644
--- a/core/viewers/wicket/viewer/src/main/java/org/apache/isis/viewer/wicket/viewer/wicketapp/IsisWicketApplication.java
+++ b/core/viewers/wicket/viewer/src/main/java/org/apache/isis/viewer/wicket/viewer/wicketapp/IsisWicketApplication.java
@@ -20,7 +20,6 @@
 package org.apache.isis.viewer.wicket.viewer.wicketapp;
 
 import java.util.Collections;
-import java.util.ServiceLoader;
 import java.util.Set;
 import java.util.UUID;
 import java.util.function.Function;
@@ -110,8 +109,6 @@ import de.agilecoders.wicket.webjars.settings.IWebjarsSettings;
 import de.agilecoders.wicket.webjars.settings.WebjarsSettings;
 import net.ftlines.wicketsource.WicketSource;
 
-//import lombok.val;
-
 /**
  * Main application, subclassing the Wicket {@link Application} and
  * bootstrapping Isis.
@@ -125,11 +122,8 @@ import net.ftlines.wicketsource.WicketSource;
  *
  * <p>
  * New {@link ComponentFactory}s can be specified in two ways. The preferred
- * approach is to use the {@link ServiceLoader} mechanism, whereby the
- * {@link ComponentFactory} implementation class is specified in a file under
- * <tt>META-INF/services</tt>. See <tt>views-gmaps2</tt> for an example of this.
- * Including a jar that uses this mechanism on the classpath will automatically
- * make the {@link ComponentFactory} defined within it available.
+ * approach is to use the have the IoC container discover the ComponentFactory.
+ * See <tt>asciidoc</tt> extension for an example of this.
  *
  * <p>
  * Alternatively, {@link ComponentFactory}s can be specified by overriding {@link #newIsisWicketModule()}.