diff options
author | David Robillard <d@drobilla.net> | 2011-02-15 23:30:14 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2011-02-15 23:30:14 +0000 |
commit | a4429e5bca1c09451b1da6de6528718a9eeddddb (patch) | |
tree | bd312f54a6c9ed77b4b1c25971f49858e029f9c6 | |
parent | 95d24f125d183d2ec9d19b8ec3c8b1c8038a4c3d (diff) | |
download | raul-a4429e5bca1c09451b1da6de6528718a9eeddddb.tar.gz raul-a4429e5bca1c09451b1da6de6528718a9eeddddb.tar.bz2 raul-a4429e5bca1c09451b1da6de6528718a9eeddddb.zip |
Remove fuzzy lack of distinction between URIs and CURIEs.
git-svn-id: http://svn.drobilla.net/lad/trunk/raul@2954 a436a847-0d15-0410-975c-d299462d15a1
-rw-r--r-- | raul/AtomRDF.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/raul/AtomRDF.hpp b/raul/AtomRDF.hpp index d9373bc..55f3213 100644 --- a/raul/AtomRDF.hpp +++ b/raul/AtomRDF.hpp @@ -117,7 +117,7 @@ atom_to_node(Redland::Model& model, const Atom& atom) break; case Atom::URI: str = atom.get_uri(); - node = librdf_new_node_from_uri_string(world.world(), CUC(world.expand_uri(str).c_str())); + node = librdf_new_node_from_uri_string(world.world(), CUC(str.c_str())); break; case Atom::STRING: str = atom.get_string(); |