You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jena.apache.org by an...@apache.org on 2020/09/27 16:34:44 UTC

[jena] branch master updated: Clean up imports

This is an automated email from the ASF dual-hosted git repository.

andy pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/jena.git


The following commit(s) were added to refs/heads/master by this push:
     new e1a9596  Clean up imports
e1a9596 is described below

commit e1a959641f83542e3a4b8c96537ab0ba19bbbc8a
Author: Andy Seaborne <an...@apache.org>
AuthorDate: Sun Sep 27 17:34:37 2020 +0100

    Clean up imports
---
 .../src/test/java/org/apache/jena/riot/writer/TestJsonLDWriter.java    | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/jena-arq/src/test/java/org/apache/jena/riot/writer/TestJsonLDWriter.java b/jena-arq/src/test/java/org/apache/jena/riot/writer/TestJsonLDWriter.java
index 208b1bf..2affc61 100644
--- a/jena-arq/src/test/java/org/apache/jena/riot/writer/TestJsonLDWriter.java
+++ b/jena-arq/src/test/java/org/apache/jena/riot/writer/TestJsonLDWriter.java
@@ -17,7 +17,6 @@
  */
 package org.apache.jena.riot.writer;
 
-import static com.github.jsonldjava.core.JsonLdOptions.JSON_LD_1_1;
 import static org.junit.Assert.assertFalse;
 import static org.junit.Assert.assertTrue;
 
@@ -32,7 +31,6 @@ import java.util.Map.Entry;
 import com.fasterxml.jackson.core.JsonParseException;
 import com.github.jsonldjava.core.JsonLdError;
 import com.github.jsonldjava.core.JsonLdOptions;
-import com.github.jsonldjava.core.JsonLdProcessor;
 import com.github.jsonldjava.utils.JsonUtils;
 
 import org.apache.jena.atlas.json.JsonObject;
@@ -49,7 +47,6 @@ import org.apache.jena.sparql.util.Context;
 import org.apache.jena.sparql.vocabulary.FOAF;
 import org.apache.jena.vocabulary.RDF;
 import org.junit.Test;
-import org.slf4j.LoggerFactory;
 
 public class TestJsonLDWriter {