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 2018/06/22 15:28:50 UTC

[1/3] jena git commit: Fix javadoc in OntModel

Repository: jena
Updated Branches:
  refs/heads/master fe9bdefa4 -> 941381b36


Fix javadoc in OntModel

Fixed order of parameters description as they appear in the corresponding method signature (first `uri`, then `cls`).

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

Branch: refs/heads/master
Commit: 571f3de458e911e566ebb4eaba2199b48cd16ec5
Parents: fe9bdef
Author: Fabrizio Cucci <fa...@gmail.com>
Authored: Fri Jun 22 14:10:25 2018 +0100
Committer: GitHub <no...@github.com>
Committed: Fri Jun 22 14:10:25 2018 +0100

----------------------------------------------------------------------
 jena-core/src/main/java/org/apache/jena/ontology/OntModel.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/jena/blob/571f3de4/jena-core/src/main/java/org/apache/jena/ontology/OntModel.java
----------------------------------------------------------------------
diff --git a/jena-core/src/main/java/org/apache/jena/ontology/OntModel.java b/jena-core/src/main/java/org/apache/jena/ontology/OntModel.java
index d0035f2..20a9a3f 100644
--- a/jena-core/src/main/java/org/apache/jena/ontology/OntModel.java
+++ b/jena-core/src/main/java/org/apache/jena/ontology/OntModel.java
@@ -743,8 +743,8 @@ public interface OntModel
      * the writable sub-model of the ontology model.
      * </p>
      *
-     * @param cls Resource representing the ontology class to which the individual belongs
      * @param uri The URI for the individual, or null for an anonymous individual.
+     * @param cls Resource representing the ontology class to which the individual belongs.
      * @return An Individual resource.
      */
     public Individual createIndividual( String uri, Resource cls );


[3/3] jena git commit: Merge commit 'refs/pull/438/head' of https://github.com/apache/jena

Posted by an...@apache.org.
Merge commit 'refs/pull/438/head' of https://github.com/apache/jena

Javadoc fix.
This closes #438.


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

Branch: refs/heads/master
Commit: 941381b36c9132c53172988c1c1f6635db406255
Parents: f0d7645 571f3de
Author: Andy Seaborne <an...@apache.org>
Authored: Fri Jun 22 16:27:22 2018 +0100
Committer: Andy Seaborne <an...@apache.org>
Committed: Fri Jun 22 16:27:22 2018 +0100

----------------------------------------------------------------------
 .../java/org/apache/jena/ontology/OntModel.java |   2 +-
 .../apache/jena/query/text/TextIndexLucene.java | 155 ++++++----
 .../text/analyzer/ConfigurableAnalyzer.java     |   1 -
 .../analyzer/IndexingMultilingualAnalyzer.java  |  61 ++++
 .../text/analyzer/LowerCaseKeywordAnalyzer.java |   1 -
 .../text/analyzer/MultilingualAnalyzer.java     |   8 +-
 .../analyzer/QueryMultilingualAnalyzer.java     |  76 +++++
 .../apache/jena/query/text/analyzer/Util.java   |  51 ++-
 .../assembler/DefineAnalyzersAssembler.java     |  81 ++++-
 .../jena/query/text/assembler/TextVocab.java    |   3 +
 .../org/apache/jena/query/text/TS_Text.java     |   1 +
 .../text/TestTextMultilingualEnhancements.java  | 310 +++++++++++++++++++
 12 files changed, 680 insertions(+), 70 deletions(-)
----------------------------------------------------------------------



[2/3] jena git commit: Remove out of date TODO

Posted by an...@apache.org.
Remove out of date TODO

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

Branch: refs/heads/master
Commit: f0d76451dfe56cf148eecc2db56cc210101295da
Parents: 3e999d5
Author: Andy Seaborne <an...@apache.org>
Authored: Fri Jun 22 14:10:42 2018 +0100
Committer: Andy Seaborne <an...@apache.org>
Committed: Fri Jun 22 14:10:42 2018 +0100

----------------------------------------------------------------------
 .../main/java/org/apache/jena/dboe/base/file/BufferChannel.java    | 2 --
 .../src/main/java/org/apache/jena/tdb/base/file/BufferChannel.java | 1 -
 2 files changed, 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/jena/blob/f0d76451/jena-db/jena-dboe-base/src/main/java/org/apache/jena/dboe/base/file/BufferChannel.java
----------------------------------------------------------------------
diff --git a/jena-db/jena-dboe-base/src/main/java/org/apache/jena/dboe/base/file/BufferChannel.java b/jena-db/jena-dboe-base/src/main/java/org/apache/jena/dboe/base/file/BufferChannel.java
index 9a26800..06e703e 100644
--- a/jena-db/jena-dboe-base/src/main/java/org/apache/jena/dboe/base/file/BufferChannel.java
+++ b/jena-db/jena-dboe-base/src/main/java/org/apache/jena/dboe/base/file/BufferChannel.java
@@ -43,8 +43,6 @@ public interface BufferChannel extends Sync, Closeable
     //   Runtime exceptions.
     // This is a simple, low level "file = array of bytes" interface"
     // This interface does not support slicing - so it's not suitable for memory mapped I/O
-    // 
-    // TODO Consider use of allocateDirect 
     
     /** Return another channel to the same storage but with independent position.
      * Chaos may result due to concurrent use.

http://git-wip-us.apache.org/repos/asf/jena/blob/f0d76451/jena-tdb/src/main/java/org/apache/jena/tdb/base/file/BufferChannel.java
----------------------------------------------------------------------
diff --git a/jena-tdb/src/main/java/org/apache/jena/tdb/base/file/BufferChannel.java b/jena-tdb/src/main/java/org/apache/jena/tdb/base/file/BufferChannel.java
index 30a8ec7..e3a0b1a 100644
--- a/jena-tdb/src/main/java/org/apache/jena/tdb/base/file/BufferChannel.java
+++ b/jena-tdb/src/main/java/org/apache/jena/tdb/base/file/BufferChannel.java
@@ -40,7 +40,6 @@ public interface BufferChannel extends Sync, Closeable
 {
     // This is a simple, low level "file = array of bytes" interface"
     // This interface does not support slicing - so it's not suitable for memory mapped I/O
-    // TODO Consider use of allocateDirect 
     
     /** Return another channel to the same storage but with independent position.
      * Chaos may result due to concurrent use.