|
From: <joh...@us...> - 2013-09-28 11:48:43
|
Revision: 16957
http://sourceforge.net/p/gate/code/16957
Author: johann_p
Date: 2013-09-28 11:48:39 +0000 (Sat, 28 Sep 2013)
Log Message:
-----------
use correct adapter method
Modified Paths:
--------------
gate/trunk/plugins/Ontology/src/gate/creole/ontology/impl/sesame/UtilTupleQueryIterator.java
Modified: gate/trunk/plugins/Ontology/src/gate/creole/ontology/impl/sesame/UtilTupleQueryIterator.java
===================================================================
--- gate/trunk/plugins/Ontology/src/gate/creole/ontology/impl/sesame/UtilTupleQueryIterator.java 2013-09-28 01:20:55 UTC (rev 16956)
+++ gate/trunk/plugins/Ontology/src/gate/creole/ontology/impl/sesame/UtilTupleQueryIterator.java 2013-09-28 11:48:39 UTC (rev 16957)
@@ -121,7 +121,7 @@
mTupleQuery.setBinding(name, mSesameManager.toSesameLiteral(value));
}
public void setBinding(String name, ONodeID value) {
- mTupleQuery.setBinding(name, mSesameManager.toSesameValue(value));
+ mTupleQuery.setBinding(name, mSesameManager.toSesameResource(value));
}
/**
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|