Repository: jclouds Updated Branches: refs/heads/cleanup-b1c16363-checkstyle [created] c01ec3c40
Cleaning up Checkstyle violations from b1c16363 Project: http://git-wip-us.apache.org/repos/asf/jclouds/repo Commit: http://git-wip-us.apache.org/repos/asf/jclouds/commit/c01ec3c4 Tree: http://git-wip-us.apache.org/repos/asf/jclouds/tree/c01ec3c4 Diff: http://git-wip-us.apache.org/repos/asf/jclouds/diff/c01ec3c4 Branch: refs/heads/cleanup-b1c16363-checkstyle Commit: c01ec3c408bfa8b1a8eb2e2273bc6aa76a27d8e9 Parents: b1c1636 Author: Andrew Phillips <[email protected]> Authored: Mon Jun 9 21:41:33 2014 -0400 Committer: Andrew Phillips <[email protected]> Committed: Mon Jun 9 21:41:33 2014 -0400 ---------------------------------------------------------------------- .../ParseObjectInfoListFromJsonResponseTest.java | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/jclouds/blob/c01ec3c4/apis/swift/src/test/java/org/jclouds/openstack/swift/functions/ParseObjectInfoListFromJsonResponseTest.java ---------------------------------------------------------------------- diff --git a/apis/swift/src/test/java/org/jclouds/openstack/swift/functions/ParseObjectInfoListFromJsonResponseTest.java b/apis/swift/src/test/java/org/jclouds/openstack/swift/functions/ParseObjectInfoListFromJsonResponseTest.java index ad9688b..3e8d685 100644 --- a/apis/swift/src/test/java/org/jclouds/openstack/swift/functions/ParseObjectInfoListFromJsonResponseTest.java +++ b/apis/swift/src/test/java/org/jclouds/openstack/swift/functions/ParseObjectInfoListFromJsonResponseTest.java @@ -19,7 +19,6 @@ package org.jclouds.openstack.swift.functions; import com.google.common.collect.ImmutableList; import com.google.common.reflect.Invokable; import com.google.gson.Gson; -import org.jclouds.blobstore.domain.PageSet; import org.jclouds.json.internal.GsonWrapper; import org.jclouds.openstack.swift.domain.ObjectInfo; import org.jclouds.openstack.swift.options.ListContainerOptions; @@ -28,17 +27,10 @@ import org.jclouds.rest.internal.GeneratedHttpRequest; import org.jclouds.util.Strings2; import org.testng.annotations.Test; -import javax.ws.rs.core.NewCookie; import java.io.InputStream; -import java.util.ArrayList; -import java.util.List; import static org.testng.Assert.assertEquals; -import static org.testng.Assert.assertNotNull; -/** - * @author Bill Branan - */ @Test(groups = "unit") public class ParseObjectInfoListFromJsonResponseTest { @@ -70,4 +62,4 @@ public class ParseObjectInfoListFromJsonResponseTest { ObjectInfo objectInfo = parser.apply(stream).iterator().next(); assertEquals(objectInfo.getName(), contentName); } -} \ No newline at end of file +}
