Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
luigi-asprino committed Sep 16, 2024
1 parent 4fb16ba commit 5bd2ec0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 70 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,8 @@

package io.github.sparqlanything.html.org.apache.any23.rdf;

import io.github.sparqlanything.html.org.apache.any23.rdf.PopularPrefixes;
import io.github.sparqlanything.html.org.apache.any23.util.MathUtils;
import io.github.sparqlanything.html.org.apache.any23.util.StringUtils;
import org.apache.commons.codec.digest.DigestUtils;
import org.eclipse.rdf4j.model.BNode;
import org.eclipse.rdf4j.model.IRI;
import org.eclipse.rdf4j.model.Literal;
Expand Down Expand Up @@ -382,7 +381,7 @@ public static BNode bnode() {
* @return the valid {@link BNode}
*/
public static BNode getBNode(String id) {
return valueFactory.createBNode("node" + MathUtils.md5(id));
return valueFactory.createBNode("node" + DigestUtils.md5Hex(id));
}

/**
Expand Down

This file was deleted.

0 comments on commit 5bd2ec0

Please sign in to comment.