You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@clerezza.apache.org by ha...@apache.org on 2022/05/19 22:04:03 UTC

[clerezza] branch master updated: CLEREZZA-1063: Fix code documentation in api.utils

This is an automated email from the ASF dual-hosted git repository.

hasan pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/clerezza.git


The following commit(s) were added to refs/heads/master by this push:
     new 8601380d CLEREZZA-1063: Fix code documentation in api.utils
8601380d is described below

commit 8601380d9b223624102b8fca1ebfb2ca55152021
Author: Hasan <ha...@apache.org>
AuthorDate: Fri May 20 00:03:36 2022 +0200

    CLEREZZA-1063: Fix code documentation in api.utils
---
 api.utils/src/main/java/org/apache/clerezza/utils/GraphNode.java | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/api.utils/src/main/java/org/apache/clerezza/utils/GraphNode.java b/api.utils/src/main/java/org/apache/clerezza/utils/GraphNode.java
index a2e25bdb..74be6686 100644
--- a/api.utils/src/main/java/org/apache/clerezza/utils/GraphNode.java
+++ b/api.utils/src/main/java/org/apache/clerezza/utils/GraphNode.java
@@ -77,7 +77,7 @@ public class GraphNode {
     /**
      * Deletes the context of a node
      *
-     * @see getNodeContext()
+     * @see #getNodeContext()
      */
     public void deleteNodeContext() {
         for (Triple triple : getNodeContext()) {
@@ -89,7 +89,7 @@ public class GraphNode {
      * The context of a node are the triples containing a node
      * as subject or object and recursively the context of the b-nodes in any
      * of these statements.
-     * <p>
+     *
      * The triples in the ImmutableGraph returned by this method contain the same bnode
      * instances as in the original graph.
      *
@@ -405,7 +405,7 @@ public class GraphNode {
     }
 
     /**
-     * Get all available properties as an {@link Iterator}<{@link IRI}>.
+     * Get all available properties as an {@link Iterator}{@literal <}{@link IRI}{@literal >}.
      * You can use <code>getObjects(IRI property)</code> to get the values of
      * each property
      *
@@ -437,7 +437,7 @@ public class GraphNode {
     }
 
     /**
-     * Get all inverse properties as an {@link Iterator}<{@link IRI}>.
+     * Get all inverse properties as an {@link Iterator}{@literal <}{@link IRI}{@literal >}.
      * You can use <code>getSubject(IRI property)</code> to get the values of
      * each inverse property
      *