You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by cz...@apache.org on 2020/02/19 06:25:44 UTC

[sling-org-apache-sling-feature-io] branch master updated: Remove unused imports

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

cziegeler pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-feature-io.git


The following commit(s) were added to refs/heads/master by this push:
     new c2409c7  Remove unused imports
c2409c7 is described below

commit c2409c798e58226abc631f2d18b05fec1801c096
Author: Carsten Ziegeler <cz...@apache.org>
AuthorDate: Wed Feb 19 07:25:32 2020 +0100

    Remove unused imports
---
 .../org/apache/sling/feature/io/json/ConfigurationJSONWriter.java   | 6 ------
 1 file changed, 6 deletions(-)

diff --git a/src/main/java/org/apache/sling/feature/io/json/ConfigurationJSONWriter.java b/src/main/java/org/apache/sling/feature/io/json/ConfigurationJSONWriter.java
index fa3572d..a6692a4 100644
--- a/src/main/java/org/apache/sling/feature/io/json/ConfigurationJSONWriter.java
+++ b/src/main/java/org/apache/sling/feature/io/json/ConfigurationJSONWriter.java
@@ -18,15 +18,9 @@ package org.apache.sling.feature.io.json;
 
 import java.io.IOException;
 import java.io.Writer;
-import java.lang.reflect.Array;
-import java.util.Collection;
-import java.util.Dictionary;
-import java.util.Enumeration;
-import java.util.Iterator;
 
 import javax.json.stream.JsonGenerator;
 
-import org.apache.sling.feature.Configuration;
 import org.apache.sling.feature.Configurations;
 
 /** JSON writer for configurations */