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 2015/09/21 20:31:19 UTC

[25/25] jena git commit: Remove debug code.

Remove debug code.

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

Branch: refs/heads/master
Commit: 31a2534c5ff1139f618d7245a79f66f53e999c6e
Parents: b0e8625
Author: Andy Seaborne <an...@apache.org>
Authored: Mon Sep 21 19:06:49 2015 +0100
Committer: Andy Seaborne <an...@apache.org>
Committed: Mon Sep 21 19:06:49 2015 +0100

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


http://git-wip-us.apache.org/repos/asf/jena/blob/31a2534c/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 47d656a..5cb9584 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
@@ -111,14 +111,12 @@ public class Fuseki {
 
     /** An identifier for the HTTP Fuseki server instance */
     static public final String        serverHttpName    = NAME + " (" + VERSION + ")" ;
-    /** An additional identifier for the HTTP Fuseki server instance in a develoment build 
-     */
+    
+    /** An additional identifier for the HTTP Fuseki server instance in a development build */
     static public final String        serverHttpNameDev   ;
     static {
-        // (See ServletBase.setCommonheaders
+        // See ServletBase.setCommonheaders
         // If it look like a SNAPSHOT, print build date. Not perfect, but better.  
-        System.err.println(">>"+BUILD_DATE);
-        System.err.println(">>"+VERSION);
         if ( VERSION.contains("SNAPSHOT") && ! BUILD_DATE.startsWith("\\${") )
             serverHttpNameDev = NAME + " (" + VERSION + " / " + BUILD_DATE +")" ;
         else