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 2017/06/21 10:14:11 UTC

[2/4] jena git commit: Move the Elasticsearch constants.

Move the Elasticsearch constants.

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

Branch: refs/heads/master
Commit: 201c3c9325b78eb3c5fbc1bd371a771c7d59d1ea
Parents: 56b238d
Author: Andy Seaborne <an...@apache.org>
Authored: Tue Jun 20 15:07:01 2017 +0100
Committer: Andy Seaborne <an...@apache.org>
Committed: Tue Jun 20 20:55:39 2017 +0100

----------------------------------------------------------------------
 .../main/java/org/apache/jena/query/text/InitJenaText.java    | 2 +-
 .../java/org/apache/jena/query/text/assembler/TextVocab.java  | 7 -------
 2 files changed, 1 insertion(+), 8 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/jena/blob/201c3c93/jena-text/src/main/java/org/apache/jena/query/text/InitJenaText.java
----------------------------------------------------------------------
diff --git a/jena-text/src/main/java/org/apache/jena/query/text/InitJenaText.java b/jena-text/src/main/java/org/apache/jena/query/text/InitJenaText.java
index 5016a90..4ac288b 100644
--- a/jena-text/src/main/java/org/apache/jena/query/text/InitJenaText.java
+++ b/jena-text/src/main/java/org/apache/jena/query/text/InitJenaText.java
@@ -22,7 +22,7 @@ import org.apache.jena.system.JenaSubsystemLifecycle ;
 
 public class InitJenaText implements JenaSubsystemLifecycle {
 
-	// Subsystems of jena-text shoudl initailizae after jena-text.
+	// Subsystems of jena-text should initialize after jena-text.
     public static int LEVEL       = 50;
     public static int LEVEL_ES    = 52;
     public static int LEVEL_SOLR  = 52;

http://git-wip-us.apache.org/repos/asf/jena/blob/201c3c93/jena-text/src/main/java/org/apache/jena/query/text/assembler/TextVocab.java
----------------------------------------------------------------------
diff --git a/jena-text/src/main/java/org/apache/jena/query/text/assembler/TextVocab.java b/jena-text/src/main/java/org/apache/jena/query/text/assembler/TextVocab.java
index b5d4df8..bee550f 100644
--- a/jena-text/src/main/java/org/apache/jena/query/text/assembler/TextVocab.java
+++ b/jena-text/src/main/java/org/apache/jena/query/text/assembler/TextVocab.java
@@ -77,12 +77,5 @@ public class TextVocab
     public static final Resource standardFilter     = Vocab.resource(NS, "StandardFilter");
     public static final Resource lowerCaseFilter    = Vocab.resource(NS, "LowerCaseFilter");
     public static final Resource asciiFoldingFilter = Vocab.resource(NS, "ASCIIFoldingFilter");
-
-    public static final Property pServerList        = Vocab.property(NS, "serverList");
-    public static final Property pClusterName       = Vocab.property(NS, "clusterName");
-    public static final Property pShards            = Vocab.property(NS, "shards");
-    public static final Property pReplicas          = Vocab.property(NS, "replicas");
-    public static final Property pIndexName          = Vocab.property(NS, "indexName");
-
 }