You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jena.apache.org by an...@apache.org on 2016/05/20 11:31:24 UTC

[3/4] jena git commit: Comments.

Comments.

Project: http://git-wip-us.apache.org/repos/asf/jena/repo
Commit: http://git-wip-us.apache.org/repos/asf/jena/commit/8aff6633
Tree: http://git-wip-us.apache.org/repos/asf/jena/tree/8aff6633
Diff: http://git-wip-us.apache.org/repos/asf/jena/diff/8aff6633

Branch: refs/heads/master
Commit: 8aff6633e4199c31bb2872841af6d2aab0ec5c7e
Parents: 2372a92
Author: Andy Seaborne <an...@apache.org>
Authored: Fri May 20 11:19:38 2016 +0100
Committer: Andy Seaborne <an...@apache.org>
Committed: Fri May 20 11:19:38 2016 +0100

----------------------------------------------------------------------
 .../src/main/java/org/apache/jena/fuseki/Fuseki.java           | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/jena/blob/8aff6633/jena-fuseki2/jena-fuseki-core/src/main/java/org/apache/jena/fuseki/Fuseki.java
----------------------------------------------------------------------
diff --git a/jena-fuseki2/jena-fuseki-core/src/main/java/org/apache/jena/fuseki/Fuseki.java b/jena-fuseki2/jena-fuseki-core/src/main/java/org/apache/jena/fuseki/Fuseki.java
index b5dd841..ef9d457 100644
--- a/jena-fuseki2/jena-fuseki-core/src/main/java/org/apache/jena/fuseki/Fuseki.java
+++ b/jena-fuseki2/jena-fuseki-core/src/main/java/org/apache/jena/fuseki/Fuseki.java
@@ -42,7 +42,7 @@ public class Fuseki {
     // General fixed constants.
     // See also FusekiServer for the naming on the filesystem
 
-    /** Path to ??? */
+    /** Path as package name */
     static public String    PATH                         = "org.apache.jena.fuseki" ;
 
     /** a unique IRI for the Fuseki namespace */
@@ -221,6 +221,10 @@ public class Fuseki {
 
     /**
      * Initialize an instance of the Fuseki server stack.
+     * This is not done via Jena's initialization mechanism
+     * but done explicitly to give more control.
+     * Touching this class causes this to happen 
+     * (see static block at the end of this class). 
      */
     public synchronized static void init() {
         if ( initialized )