From 5edfa72b81b46866a87d4f3c118492ee99bc0476 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sun, 11 Jul 2021 18:44:03 -0400 Subject: Remove SERD_CURIE node datatype entirely --- src/statement.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'src/statement.c') diff --git a/src/statement.c b/src/statement.c index 0ec6520a..f3034566 100644 --- a/src/statement.c +++ b/src/statement.c @@ -28,8 +28,7 @@ is_resource(const SerdNode* const node) { const SerdNodeType type = serd_node_type(node); - return type == SERD_URI || type == SERD_CURIE || type == SERD_BLANK || - type == SERD_VARIABLE; + return type == SERD_URI || type == SERD_BLANK || type == SERD_VARIABLE; } bool -- cgit v1.2.1