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 2019/03/22 12:16:01 UTC

[jena] branch master updated: set Dyadic#getL() and Dyadic#getR() return type to Graph

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 60fac86  set Dyadic#getL() and Dyadic#getR() return type to Graph
     new aab4c5e  Merge pull request #545 from jmkeil/dyadic_return_types
60fac86 is described below

commit 60fac86eed66e0fe5b11824754923c524eec9f0e
Author: Jan Martin Keil <ja...@uni-jena.de>
AuthorDate: Thu Mar 21 12:57:01 2019 +0100

    set Dyadic#getL() and Dyadic#getR() return type to Graph
---
 jena-core/src/main/java/org/apache/jena/graph/compose/Dyadic.java | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/jena-core/src/main/java/org/apache/jena/graph/compose/Dyadic.java b/jena-core/src/main/java/org/apache/jena/graph/compose/Dyadic.java
index b3a5326..da93e32 100644
--- a/jena-core/src/main/java/org/apache/jena/graph/compose/Dyadic.java
+++ b/jena-core/src/main/java/org/apache/jena/graph/compose/Dyadic.java
@@ -84,13 +84,13 @@ public abstract class Dyadic extends CompositionBase
     /**
          Answer the left (first) operand of this Dyadic.
     */
-    public Object getL()
+    public Graph getL()
         { return L; }
 
     /**
          Answer the right (second) operand of this Dyadic.
     */
-    public Object getR()
+    public Graph getR()
         { return R; }
         
     }