Skip to content

Commit

Permalink
see #371
Browse files Browse the repository at this point in the history
  • Loading branch information
luigi-asprino committed Jun 7, 2023
1 parent f4b14a5 commit 68be3f5
Showing 1 changed file with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,14 @@ static boolean getSliceArgument(Properties properties) {
return slice;
}

static boolean noCache(Properties properties) {
boolean noCache = false;
if (properties.containsKey(IRIArgument.NO_CACHE.toString())) {
noCache = Boolean.parseBoolean(properties.getProperty(IRIArgument.NO_CACHE.toString()));
}
return noCache;
}

static boolean useRDFsMember(Properties properties) {
boolean use_rdfs_member = false;
if (properties.containsKey(IRIArgument.USE_RDFS_MEMBER.toString())) {
Expand Down

0 comments on commit 68be3f5

Please sign in to comment.