Organize imports to get rid of warnings 03/5503/1
authorRobert Varga <rovarga@cisco.com>
Fri, 28 Feb 2014 14:12:46 +0000 (15:12 +0100)
committerRobert Varga <rovarga@cisco.com>
Fri, 28 Feb 2014 14:12:46 +0000 (15:12 +0100)
Duplicate/unused imports: get rid of them.

Change-Id: I1f3c807117843cb5dbad4dcb3f2e83394c761d38
Signed-off-by: Robert Varga <rovarga@cisco.com>
restconf/restconf-client-api/src/main/java/org/opendaylight/yangtools/restconf/client/api/RestconfClientContext.java
restconf/restconf-client-impl/src/main/java/org/opendaylight/yangtools/restconf/client/ConfigurationDataStoreImpl.java

index 5fd3e27647161fc9848cd0c76979c7d85cefdc9d..87b52e76e186cc3abc03587346b83538d0eeebbc 100644 (file)
@@ -9,7 +9,6 @@ package org.opendaylight.yangtools.restconf.client.api;
 
 import java.util.Set;
 
-import org.opendaylight.yangtools.restconf.client.api.auth.AuthenticationHolder;
 import org.opendaylight.yangtools.restconf.client.api.data.ConfigurationDatastore;
 import org.opendaylight.yangtools.restconf.client.api.data.OperationalDatastore;
 import org.opendaylight.yangtools.restconf.client.api.event.EventStreamInfo;
@@ -23,7 +22,7 @@ public interface RestconfClientContext extends AutoCloseable {
        /**
         * Returns a set of {@link RpcServiceContext} which provides invocation
         * handling for RPCs supported by the backing server.
-        * 
+        *
         * @return Future representing the asynchronous call to fetch the information.
         */
        ListenableFuture<Set<Class<? extends RpcService>>> getRpcServices();
index 9221bb331302bc95f67354bb3bdcd3e36b328179..4df049538b0dcc7e3fcb687d68e29d8cd133b7ae 100644 (file)
@@ -7,18 +7,14 @@
  */
 package org.opendaylight.yangtools.restconf.client;
 
-import com.google.common.base.Function;
-import com.google.common.base.Optional;
-import com.google.common.util.concurrent.ListenableFuture;
-import com.google.common.util.concurrent.ListeningExecutorService;
-import com.google.common.util.concurrent.MoreExecutors;
-import com.sun.jersey.api.client.ClientResponse;
 import java.util.ArrayList;
 import java.util.Collection;
 import java.util.Map;
 import java.util.Map.Entry;
 import java.util.concurrent.Executors;
+
 import javax.ws.rs.core.MediaType;
+
 import org.opendaylight.yangtools.restconf.client.api.data.ConfigurationDatastore;
 import org.opendaylight.yangtools.restconf.client.to.RestRpcError;
 import org.opendaylight.yangtools.restconf.client.to.RestRpcResult;
@@ -32,13 +28,12 @@ import org.opendaylight.yangtools.yang.data.impl.codec.BindingIndependentMapping
 import org.opendaylight.yangtools.yang.model.api.DataSchemaNode;
 import org.opendaylight.yangtools.yang.model.api.SchemaContext;
 
+import com.google.common.base.Function;
 import com.google.common.base.Optional;
 import com.google.common.util.concurrent.ListenableFuture;
 import com.google.common.util.concurrent.ListeningExecutorService;
 import com.google.common.util.concurrent.MoreExecutors;
 import com.sun.jersey.api.client.ClientResponse;
-import com.sun.jersey.api.client.WebResource;
-
 
 public class ConfigurationDataStoreImpl extends AbstractDataStore implements ConfigurationDatastore  {