remove unused imports
Project: http://git-wip-us.apache.org/repos/asf/oodt/repo Commit: http://git-wip-us.apache.org/repos/asf/oodt/commit/d3ee12a2 Tree: http://git-wip-us.apache.org/repos/asf/oodt/tree/d3ee12a2 Diff: http://git-wip-us.apache.org/repos/asf/oodt/diff/d3ee12a2 Branch: refs/heads/master Commit: d3ee12a2f88ef79a27325865a7862573a060ae00 Parents: ed6be8c Author: Tom Barber <[email protected]> Authored: Sun Oct 25 15:46:03 2015 +0000 Committer: Tom Barber <[email protected]> Committed: Sun Oct 25 15:46:03 2015 +0000 ---------------------------------------------------------------------- .../java/org/apache/oodt/cas/cli/util/TestCmdLineUtils.java | 2 -- .../src/main/java/org/apache/oodt/commons/Configuration.java | 1 - .../main/java/org/apache/oodt/commons/ExecServerConfig.java | 1 - commons/src/main/java/org/apache/oodt/commons/Executable.java | 1 - .../java/org/apache/oodt/commons/io/NullOutputStream.java | 1 - .../main/java/org/apache/oodt/commons/util/Documentable.java | 2 -- commons/src/main/java/org/apache/oodt/commons/util/LDAP.java | 3 --- .../test/java/org/apache/oodt/commons/AbstractTestCase.java | 1 - commons/src/test/java/org/apache/oodt/commons/AppTest.java | 1 - .../test/java/org/apache/oodt/commons/ConfigurationTest.java | 2 +- .../java/org/apache/oodt/commons/ConfiguredTestCaseTest.java | 1 - .../src/test/java/org/apache/oodt/commons/NaughtyTest.java | 1 - .../apache/oodt/commons/io/FixedBufferOutputStreamTest.java | 1 - .../java/org/apache/oodt/commons/io/NullInputStreamTest.java | 2 +- .../java/org/apache/oodt/commons/io/NullOutputStreamTest.java | 2 +- .../test/java/org/apache/oodt/commons/util/Base64Test.java | 1 - .../test/java/org/apache/oodt/commons/util/CacheMapTest.java | 2 -- .../src/test/java/org/apache/oodt/commons/util/LDAPTest.java | 2 -- .../src/test/java/org/apache/oodt/commons/util/XMLTest.java | 2 +- .../crawl/typedetection/TestMimeExtractorConfigReader.java | 1 - .../java/org/apache/oodt/cas/filemgr/ingest/LocalCache.java | 1 - .../apache/oodt/cas/filemgr/ingest/TestCachedIngester.java | 1 - .../oodt/cas/filemgr/system/MockXmlRpcFileManagerClient.java | 1 - .../src/main/java/org/apache/oodt/pcs/pedigree/Pedigree.java | 1 - .../org/apache/oodt/profile/RangedProfileElementTest.java | 1 - .../java/org/apache/oodt/cas/protocol/TestProtocolFile.java | 1 - .../oodt/cas/protocol/ftp/TestCogJGlobusFtpProtocol.java | 1 - .../oodt/cas/resource/batchmgr/XmlRpcBatchMgrFactory.java | 1 - .../oodt/cas/workflow/engine/QuerierAndRunnerUtils.java | 3 --- .../instrepo/TestLuceneWorkflowInstanceRepository.java | 1 - .../src/main/java/org/apache/oodt/xmlquery/CodecFactory.java | 1 - xmlquery/src/main/java/org/apache/oodt/xmlquery/Header.java | 2 +- .../src/main/java/org/apache/oodt/xmlquery/QueryElement.java | 3 +-- xmlquery/src/main/java/org/apache/oodt/xmlquery/Result.java | 2 +- xmlquery/src/main/java/org/apache/oodt/xmlquery/Results.java | 1 - .../src/main/java/org/apache/oodt/xmlquery/StringCodec.java | 2 +- .../src/test/java/org/apache/oodt/xmlquery/CodecTest.java | 3 --- .../org/apache/oodt/xmlquery/CompressedObjectCodecTest.java | 6 ------ .../org/apache/oodt/xmlquery/CompressedStringCodecTest.java | 7 +------ .../org/apache/oodt/xmlquery/EmptyByteArrayCodecTest.java | 6 ------ .../src/test/java/org/apache/oodt/xmlquery/HeaderTest.java | 2 -- .../test/java/org/apache/oodt/xmlquery/ObjectCodecTest.java | 6 ------ .../test/java/org/apache/oodt/xmlquery/QueryElementTest.java | 3 --- .../src/test/java/org/apache/oodt/xmlquery/ResultTest.java | 2 -- .../test/java/org/apache/oodt/xmlquery/StringCodecTest.java | 7 +------ .../src/test/java/org/apache/oodt/xmlquery/XMLQueryTest.java | 2 -- 46 files changed, 10 insertions(+), 87 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/oodt/blob/d3ee12a2/cli/src/test/java/org/apache/oodt/cas/cli/util/TestCmdLineUtils.java ---------------------------------------------------------------------- diff --git a/cli/src/test/java/org/apache/oodt/cas/cli/util/TestCmdLineUtils.java b/cli/src/test/java/org/apache/oodt/cas/cli/util/TestCmdLineUtils.java index c4ce9cc..08aadee 100644 --- a/cli/src/test/java/org/apache/oodt/cas/cli/util/TestCmdLineUtils.java +++ b/cli/src/test/java/org/apache/oodt/cas/cli/util/TestCmdLineUtils.java @@ -51,11 +51,9 @@ import org.apache.oodt.cas.cli.option.GroupCmdLineOption; import org.apache.oodt.cas.cli.option.GroupSubOption; import org.apache.oodt.cas.cli.option.HelpCmdLineOption; import org.apache.oodt.cas.cli.option.PrintSupportedActionsCmdLineOption; -import org.apache.oodt.cas.cli.option.SimpleCmdLineOption; import org.apache.oodt.cas.cli.option.handler.CmdLineOptionHandler; import org.apache.oodt.cas.cli.option.validator.AllowedArgsCmdLineOptionValidator; import org.apache.oodt.cas.cli.option.validator.CmdLineOptionValidator; -import org.apache.oodt.cas.cli.test.util.TestUtils; import org.apache.oodt.cas.cli.util.CmdLineUtils; //Google imports http://git-wip-us.apache.org/repos/asf/oodt/blob/d3ee12a2/commons/src/main/java/org/apache/oodt/commons/Configuration.java ---------------------------------------------------------------------- diff --git a/commons/src/main/java/org/apache/oodt/commons/Configuration.java b/commons/src/main/java/org/apache/oodt/commons/Configuration.java index 740d810..e142165 100644 --- a/commons/src/main/java/org/apache/oodt/commons/Configuration.java +++ b/commons/src/main/java/org/apache/oodt/commons/Configuration.java @@ -29,7 +29,6 @@ import javax.naming.InitialContext; import javax.naming.NamingException; import javax.naming.NoInitialContextException; import java.rmi.registry.Registry; -import java.util.StringTokenizer; /** EDA Configuration. * http://git-wip-us.apache.org/repos/asf/oodt/blob/d3ee12a2/commons/src/main/java/org/apache/oodt/commons/ExecServerConfig.java ---------------------------------------------------------------------- diff --git a/commons/src/main/java/org/apache/oodt/commons/ExecServerConfig.java b/commons/src/main/java/org/apache/oodt/commons/ExecServerConfig.java index ebea28f..c037cdf 100644 --- a/commons/src/main/java/org/apache/oodt/commons/ExecServerConfig.java +++ b/commons/src/main/java/org/apache/oodt/commons/ExecServerConfig.java @@ -17,7 +17,6 @@ package org.apache.oodt.commons; -import java.io.*; import java.net.InetAddress; import java.net.UnknownHostException; import java.util.*; http://git-wip-us.apache.org/repos/asf/oodt/blob/d3ee12a2/commons/src/main/java/org/apache/oodt/commons/Executable.java ---------------------------------------------------------------------- diff --git a/commons/src/main/java/org/apache/oodt/commons/Executable.java b/commons/src/main/java/org/apache/oodt/commons/Executable.java index dc3940a..44f1287 100644 --- a/commons/src/main/java/org/apache/oodt/commons/Executable.java +++ b/commons/src/main/java/org/apache/oodt/commons/Executable.java @@ -18,7 +18,6 @@ package org.apache.oodt.commons; import java.io.*; -import java.util.*; /** An executable object. * http://git-wip-us.apache.org/repos/asf/oodt/blob/d3ee12a2/commons/src/main/java/org/apache/oodt/commons/io/NullOutputStream.java ---------------------------------------------------------------------- diff --git a/commons/src/main/java/org/apache/oodt/commons/io/NullOutputStream.java b/commons/src/main/java/org/apache/oodt/commons/io/NullOutputStream.java index 0190c03..d7a332d 100644 --- a/commons/src/main/java/org/apache/oodt/commons/io/NullOutputStream.java +++ b/commons/src/main/java/org/apache/oodt/commons/io/NullOutputStream.java @@ -16,7 +16,6 @@ package org.apache.oodt.commons.io; import java.io.*; -import java.util.*; /** A null output stream. * http://git-wip-us.apache.org/repos/asf/oodt/blob/d3ee12a2/commons/src/main/java/org/apache/oodt/commons/util/Documentable.java ---------------------------------------------------------------------- diff --git a/commons/src/main/java/org/apache/oodt/commons/util/Documentable.java b/commons/src/main/java/org/apache/oodt/commons/util/Documentable.java index 90c9ce9..0190f0c 100644 --- a/commons/src/main/java/org/apache/oodt/commons/util/Documentable.java +++ b/commons/src/main/java/org/apache/oodt/commons/util/Documentable.java @@ -15,8 +15,6 @@ package org.apache.oodt.commons.util; -import java.io.*; -import java.util.*; import org.w3c.dom.*; /** A documentable object. http://git-wip-us.apache.org/repos/asf/oodt/blob/d3ee12a2/commons/src/main/java/org/apache/oodt/commons/util/LDAP.java ---------------------------------------------------------------------- diff --git a/commons/src/main/java/org/apache/oodt/commons/util/LDAP.java b/commons/src/main/java/org/apache/oodt/commons/util/LDAP.java index 0dc52d4..fbb5f67 100644 --- a/commons/src/main/java/org/apache/oodt/commons/util/LDAP.java +++ b/commons/src/main/java/org/apache/oodt/commons/util/LDAP.java @@ -15,9 +15,6 @@ package org.apache.oodt.commons.util; -import java.io.*; -import java.util.*; - /** LDAP services. * * This class provides LDAP convenience services. http://git-wip-us.apache.org/repos/asf/oodt/blob/d3ee12a2/commons/src/test/java/org/apache/oodt/commons/AbstractTestCase.java ---------------------------------------------------------------------- diff --git a/commons/src/test/java/org/apache/oodt/commons/AbstractTestCase.java b/commons/src/test/java/org/apache/oodt/commons/AbstractTestCase.java index 144d545..5ffaf34 100644 --- a/commons/src/test/java/org/apache/oodt/commons/AbstractTestCase.java +++ b/commons/src/test/java/org/apache/oodt/commons/AbstractTestCase.java @@ -18,7 +18,6 @@ package org.apache.oodt.commons; import java.io.File; import junit.framework.TestCase; -import junit.framework.TestSuite; /** * Abstract base class for test cases. http://git-wip-us.apache.org/repos/asf/oodt/blob/d3ee12a2/commons/src/test/java/org/apache/oodt/commons/AppTest.java ---------------------------------------------------------------------- diff --git a/commons/src/test/java/org/apache/oodt/commons/AppTest.java b/commons/src/test/java/org/apache/oodt/commons/AppTest.java index 52e65db..4af4d0f 100644 --- a/commons/src/test/java/org/apache/oodt/commons/AppTest.java +++ b/commons/src/test/java/org/apache/oodt/commons/AppTest.java @@ -15,7 +15,6 @@ package org.apache.oodt.commons; import junit.framework.Test; -import junit.framework.TestCase; import junit.framework.TestSuite; /** http://git-wip-us.apache.org/repos/asf/oodt/blob/d3ee12a2/commons/src/test/java/org/apache/oodt/commons/ConfigurationTest.java ---------------------------------------------------------------------- diff --git a/commons/src/test/java/org/apache/oodt/commons/ConfigurationTest.java b/commons/src/test/java/org/apache/oodt/commons/ConfigurationTest.java index b37df44..839116c 100644 --- a/commons/src/test/java/org/apache/oodt/commons/ConfigurationTest.java +++ b/commons/src/test/java/org/apache/oodt/commons/ConfigurationTest.java @@ -19,7 +19,7 @@ import java.io.*; import java.net.MalformedURLException; import java.util.*; import junit.framework.*; -import org.w3c.dom.*; + import org.xml.sax.*; /** Unit test the {@link Configuration} class. http://git-wip-us.apache.org/repos/asf/oodt/blob/d3ee12a2/commons/src/test/java/org/apache/oodt/commons/ConfiguredTestCaseTest.java ---------------------------------------------------------------------- diff --git a/commons/src/test/java/org/apache/oodt/commons/ConfiguredTestCaseTest.java b/commons/src/test/java/org/apache/oodt/commons/ConfiguredTestCaseTest.java index 0e062a1..a10d042 100644 --- a/commons/src/test/java/org/apache/oodt/commons/ConfiguredTestCaseTest.java +++ b/commons/src/test/java/org/apache/oodt/commons/ConfiguredTestCaseTest.java @@ -16,7 +16,6 @@ package org.apache.oodt.commons; import junit.framework.TestCase; -import org.xml.sax.SAXParseException; /** * Unit test the ConfiguredTestCase class. http://git-wip-us.apache.org/repos/asf/oodt/blob/d3ee12a2/commons/src/test/java/org/apache/oodt/commons/NaughtyTest.java ---------------------------------------------------------------------- diff --git a/commons/src/test/java/org/apache/oodt/commons/NaughtyTest.java b/commons/src/test/java/org/apache/oodt/commons/NaughtyTest.java index a825b7e..d73152f 100644 --- a/commons/src/test/java/org/apache/oodt/commons/NaughtyTest.java +++ b/commons/src/test/java/org/apache/oodt/commons/NaughtyTest.java @@ -16,7 +16,6 @@ package org.apache.oodt.commons; import junit.framework.Test; -import junit.framework.TestCase; import junit.framework.TestSuite; /** http://git-wip-us.apache.org/repos/asf/oodt/blob/d3ee12a2/commons/src/test/java/org/apache/oodt/commons/io/FixedBufferOutputStreamTest.java ---------------------------------------------------------------------- diff --git a/commons/src/test/java/org/apache/oodt/commons/io/FixedBufferOutputStreamTest.java b/commons/src/test/java/org/apache/oodt/commons/io/FixedBufferOutputStreamTest.java index a3efa38..b08ee73 100644 --- a/commons/src/test/java/org/apache/oodt/commons/io/FixedBufferOutputStreamTest.java +++ b/commons/src/test/java/org/apache/oodt/commons/io/FixedBufferOutputStreamTest.java @@ -16,7 +16,6 @@ package org.apache.oodt.commons.io; import java.io.IOException; -import java.io.OutputStream; import java.util.Arrays; import junit.framework.TestCase; http://git-wip-us.apache.org/repos/asf/oodt/blob/d3ee12a2/commons/src/test/java/org/apache/oodt/commons/io/NullInputStreamTest.java ---------------------------------------------------------------------- diff --git a/commons/src/test/java/org/apache/oodt/commons/io/NullInputStreamTest.java b/commons/src/test/java/org/apache/oodt/commons/io/NullInputStreamTest.java index cf92b7f..7efcb8c 100644 --- a/commons/src/test/java/org/apache/oodt/commons/io/NullInputStreamTest.java +++ b/commons/src/test/java/org/apache/oodt/commons/io/NullInputStreamTest.java @@ -16,7 +16,7 @@ package org.apache.oodt.commons.io; import java.io.IOException; -import java.io.InputStream; + import junit.framework.TestCase; /** http://git-wip-us.apache.org/repos/asf/oodt/blob/d3ee12a2/commons/src/test/java/org/apache/oodt/commons/io/NullOutputStreamTest.java ---------------------------------------------------------------------- diff --git a/commons/src/test/java/org/apache/oodt/commons/io/NullOutputStreamTest.java b/commons/src/test/java/org/apache/oodt/commons/io/NullOutputStreamTest.java index b6a234e..5b37f80 100644 --- a/commons/src/test/java/org/apache/oodt/commons/io/NullOutputStreamTest.java +++ b/commons/src/test/java/org/apache/oodt/commons/io/NullOutputStreamTest.java @@ -16,7 +16,7 @@ package org.apache.oodt.commons.io; import java.io.*; -import java.util.*; + import junit.framework.*; /** Unit test the {@link NullOutputStream} class. http://git-wip-us.apache.org/repos/asf/oodt/blob/d3ee12a2/commons/src/test/java/org/apache/oodt/commons/util/Base64Test.java ---------------------------------------------------------------------- diff --git a/commons/src/test/java/org/apache/oodt/commons/util/Base64Test.java b/commons/src/test/java/org/apache/oodt/commons/util/Base64Test.java index 9554b66..b3becdf 100644 --- a/commons/src/test/java/org/apache/oodt/commons/util/Base64Test.java +++ b/commons/src/test/java/org/apache/oodt/commons/util/Base64Test.java @@ -15,7 +15,6 @@ package org.apache.oodt.commons.util; -import java.io.*; import java.util.*; import junit.framework.*; http://git-wip-us.apache.org/repos/asf/oodt/blob/d3ee12a2/commons/src/test/java/org/apache/oodt/commons/util/CacheMapTest.java ---------------------------------------------------------------------- diff --git a/commons/src/test/java/org/apache/oodt/commons/util/CacheMapTest.java b/commons/src/test/java/org/apache/oodt/commons/util/CacheMapTest.java index a7c82e6..dbdc570 100644 --- a/commons/src/test/java/org/apache/oodt/commons/util/CacheMapTest.java +++ b/commons/src/test/java/org/apache/oodt/commons/util/CacheMapTest.java @@ -15,8 +15,6 @@ package org.apache.oodt.commons.util; -import java.io.*; -import java.util.*; import junit.framework.*; /** Unit test the {@link CacheMap} class. http://git-wip-us.apache.org/repos/asf/oodt/blob/d3ee12a2/commons/src/test/java/org/apache/oodt/commons/util/LDAPTest.java ---------------------------------------------------------------------- diff --git a/commons/src/test/java/org/apache/oodt/commons/util/LDAPTest.java b/commons/src/test/java/org/apache/oodt/commons/util/LDAPTest.java index 9874643..8bf5cb4 100644 --- a/commons/src/test/java/org/apache/oodt/commons/util/LDAPTest.java +++ b/commons/src/test/java/org/apache/oodt/commons/util/LDAPTest.java @@ -15,8 +15,6 @@ package org.apache.oodt.commons.util; -import java.io.*; -import java.util.*; import junit.framework.*; /** Unit test the {@link LDAP} class. http://git-wip-us.apache.org/repos/asf/oodt/blob/d3ee12a2/commons/src/test/java/org/apache/oodt/commons/util/XMLTest.java ---------------------------------------------------------------------- diff --git a/commons/src/test/java/org/apache/oodt/commons/util/XMLTest.java b/commons/src/test/java/org/apache/oodt/commons/util/XMLTest.java index fe26a83..f2098b9 100644 --- a/commons/src/test/java/org/apache/oodt/commons/util/XMLTest.java +++ b/commons/src/test/java/org/apache/oodt/commons/util/XMLTest.java @@ -16,7 +16,7 @@ package org.apache.oodt.commons.util; import java.io.*; -import java.util.*; + import junit.framework.*; import org.w3c.dom.*; import org.xml.sax.*; http://git-wip-us.apache.org/repos/asf/oodt/blob/d3ee12a2/crawler/src/test/java/org/apache/oodt/cas/crawl/typedetection/TestMimeExtractorConfigReader.java ---------------------------------------------------------------------- diff --git a/crawler/src/test/java/org/apache/oodt/cas/crawl/typedetection/TestMimeExtractorConfigReader.java b/crawler/src/test/java/org/apache/oodt/cas/crawl/typedetection/TestMimeExtractorConfigReader.java index 4a7e410..bfc445d 100644 --- a/crawler/src/test/java/org/apache/oodt/cas/crawl/typedetection/TestMimeExtractorConfigReader.java +++ b/crawler/src/test/java/org/apache/oodt/cas/crawl/typedetection/TestMimeExtractorConfigReader.java @@ -27,7 +27,6 @@ import org.apache.commons.io.FileUtils; //OODT imports import org.apache.oodt.cas.metadata.extractors.CopyAndRewriteExtractor; import org.apache.oodt.cas.metadata.extractors.MetReaderExtractor; -import org.apache.oodt.cas.metadata.filenaming.PathUtilsNamingConvention; //Google imports import com.google.common.collect.Lists; http://git-wip-us.apache.org/repos/asf/oodt/blob/d3ee12a2/filemgr/src/main/java/org/apache/oodt/cas/filemgr/ingest/LocalCache.java ---------------------------------------------------------------------- diff --git a/filemgr/src/main/java/org/apache/oodt/cas/filemgr/ingest/LocalCache.java b/filemgr/src/main/java/org/apache/oodt/cas/filemgr/ingest/LocalCache.java index a4c56b1..8ea8634 100644 --- a/filemgr/src/main/java/org/apache/oodt/cas/filemgr/ingest/LocalCache.java +++ b/filemgr/src/main/java/org/apache/oodt/cas/filemgr/ingest/LocalCache.java @@ -29,7 +29,6 @@ import org.apache.oodt.cas.filemgr.system.XmlRpcFileManagerClient; //JDK imports import java.net.URL; import java.util.HashSet; -import java.util.Iterator; import java.util.List; import java.util.Vector; import java.util.logging.Level; http://git-wip-us.apache.org/repos/asf/oodt/blob/d3ee12a2/filemgr/src/test/java/org/apache/oodt/cas/filemgr/ingest/TestCachedIngester.java ---------------------------------------------------------------------- diff --git a/filemgr/src/test/java/org/apache/oodt/cas/filemgr/ingest/TestCachedIngester.java b/filemgr/src/test/java/org/apache/oodt/cas/filemgr/ingest/TestCachedIngester.java index fa809f7..d7c122a 100644 --- a/filemgr/src/test/java/org/apache/oodt/cas/filemgr/ingest/TestCachedIngester.java +++ b/filemgr/src/test/java/org/apache/oodt/cas/filemgr/ingest/TestCachedIngester.java @@ -21,7 +21,6 @@ package org.apache.oodt.cas.filemgr.ingest; //JDK imports import java.io.File; import java.io.FileInputStream; -import java.net.MalformedURLException; import java.net.URL; import java.util.Date; import java.util.List; http://git-wip-us.apache.org/repos/asf/oodt/blob/d3ee12a2/filemgr/src/test/java/org/apache/oodt/cas/filemgr/system/MockXmlRpcFileManagerClient.java ---------------------------------------------------------------------- diff --git a/filemgr/src/test/java/org/apache/oodt/cas/filemgr/system/MockXmlRpcFileManagerClient.java b/filemgr/src/test/java/org/apache/oodt/cas/filemgr/system/MockXmlRpcFileManagerClient.java index cf80e91..ef0c537 100644 --- a/filemgr/src/test/java/org/apache/oodt/cas/filemgr/system/MockXmlRpcFileManagerClient.java +++ b/filemgr/src/test/java/org/apache/oodt/cas/filemgr/system/MockXmlRpcFileManagerClient.java @@ -27,7 +27,6 @@ import org.apache.oodt.cas.filemgr.structs.FileTransferStatus; import org.apache.oodt.cas.filemgr.structs.Product; import org.apache.oodt.cas.filemgr.structs.ProductPage; import org.apache.oodt.cas.filemgr.structs.ProductType; -import org.apache.oodt.cas.filemgr.structs.Query; import org.apache.oodt.cas.filemgr.structs.Reference; import org.apache.oodt.cas.filemgr.structs.exceptions.ConnectionException; import org.apache.oodt.cas.filemgr.structs.exceptions.DataTransferException; http://git-wip-us.apache.org/repos/asf/oodt/blob/d3ee12a2/pcs/core/src/main/java/org/apache/oodt/pcs/pedigree/Pedigree.java ---------------------------------------------------------------------- diff --git a/pcs/core/src/main/java/org/apache/oodt/pcs/pedigree/Pedigree.java b/pcs/core/src/main/java/org/apache/oodt/pcs/pedigree/Pedigree.java index 1aa321c..7f6f7b3 100644 --- a/pcs/core/src/main/java/org/apache/oodt/pcs/pedigree/Pedigree.java +++ b/pcs/core/src/main/java/org/apache/oodt/pcs/pedigree/Pedigree.java @@ -28,7 +28,6 @@ import org.apache.oodt.cas.filemgr.structs.Product; import org.apache.oodt.cas.metadata.Metadata; //JDK imports -import java.util.Iterator; import java.util.List; import java.util.Stack; import java.util.Vector; http://git-wip-us.apache.org/repos/asf/oodt/blob/d3ee12a2/profile/src/test/java/org/apache/oodt/profile/RangedProfileElementTest.java ---------------------------------------------------------------------- diff --git a/profile/src/test/java/org/apache/oodt/profile/RangedProfileElementTest.java b/profile/src/test/java/org/apache/oodt/profile/RangedProfileElementTest.java index e8ede4e..7fe75cf 100644 --- a/profile/src/test/java/org/apache/oodt/profile/RangedProfileElementTest.java +++ b/profile/src/test/java/org/apache/oodt/profile/RangedProfileElementTest.java @@ -25,7 +25,6 @@ import javax.xml.transform.Transformer; import javax.xml.transform.TransformerFactory; import org.apache.oodt.commons.io.NullOutputStream; import org.apache.oodt.commons.util.XML; -import junit.framework.TestCase; import org.w3c.dom.Document; import org.w3c.dom.Node; http://git-wip-us.apache.org/repos/asf/oodt/blob/d3ee12a2/protocol/api/src/test/java/org/apache/oodt/cas/protocol/TestProtocolFile.java ---------------------------------------------------------------------- diff --git a/protocol/api/src/test/java/org/apache/oodt/cas/protocol/TestProtocolFile.java b/protocol/api/src/test/java/org/apache/oodt/cas/protocol/TestProtocolFile.java index f0c472d..0d7cdeb 100644 --- a/protocol/api/src/test/java/org/apache/oodt/cas/protocol/TestProtocolFile.java +++ b/protocol/api/src/test/java/org/apache/oodt/cas/protocol/TestProtocolFile.java @@ -17,7 +17,6 @@ package org.apache.oodt.cas.protocol; //JDK imports -import java.io.File; //JUnit imports import junit.framework.TestCase; http://git-wip-us.apache.org/repos/asf/oodt/blob/d3ee12a2/protocol/ftp/src/test/java/org/apache/oodt/cas/protocol/ftp/TestCogJGlobusFtpProtocol.java ---------------------------------------------------------------------- diff --git a/protocol/ftp/src/test/java/org/apache/oodt/cas/protocol/ftp/TestCogJGlobusFtpProtocol.java b/protocol/ftp/src/test/java/org/apache/oodt/cas/protocol/ftp/TestCogJGlobusFtpProtocol.java index e69bf9e..379276f 100644 --- a/protocol/ftp/src/test/java/org/apache/oodt/cas/protocol/ftp/TestCogJGlobusFtpProtocol.java +++ b/protocol/ftp/src/test/java/org/apache/oodt/cas/protocol/ftp/TestCogJGlobusFtpProtocol.java @@ -18,7 +18,6 @@ package org.apache.oodt.cas.protocol.ftp; //JUnit imports import java.io.File; -import java.util.ArrayList; import java.util.List; import java.util.Vector; http://git-wip-us.apache.org/repos/asf/oodt/blob/d3ee12a2/resource/src/main/java/org/apache/oodt/cas/resource/batchmgr/XmlRpcBatchMgrFactory.java ---------------------------------------------------------------------- diff --git a/resource/src/main/java/org/apache/oodt/cas/resource/batchmgr/XmlRpcBatchMgrFactory.java b/resource/src/main/java/org/apache/oodt/cas/resource/batchmgr/XmlRpcBatchMgrFactory.java index 3a344ed..5fb1ce4 100644 --- a/resource/src/main/java/org/apache/oodt/cas/resource/batchmgr/XmlRpcBatchMgrFactory.java +++ b/resource/src/main/java/org/apache/oodt/cas/resource/batchmgr/XmlRpcBatchMgrFactory.java @@ -18,7 +18,6 @@ package org.apache.oodt.cas.resource.batchmgr; -import org.apache.oodt.cas.resource.util.GenericResourceManagerObjectFactory; import org.apache.oodt.cas.resource.monitor.Monitor; /** http://git-wip-us.apache.org/repos/asf/oodt/blob/d3ee12a2/workflow/src/test/java/org/apache/oodt/cas/workflow/engine/QuerierAndRunnerUtils.java ---------------------------------------------------------------------- diff --git a/workflow/src/test/java/org/apache/oodt/cas/workflow/engine/QuerierAndRunnerUtils.java b/workflow/src/test/java/org/apache/oodt/cas/workflow/engine/QuerierAndRunnerUtils.java index 0d83638..b936617 100644 --- a/workflow/src/test/java/org/apache/oodt/cas/workflow/engine/QuerierAndRunnerUtils.java +++ b/workflow/src/test/java/org/apache/oodt/cas/workflow/engine/QuerierAndRunnerUtils.java @@ -23,11 +23,8 @@ import java.io.IOException; import java.lang.reflect.InvocationTargetException; import java.util.Collections; import java.util.Date; -import java.util.List; -import java.util.Vector; //OODT imports -import org.apache.oodt.cas.workflow.engine.processor.SequentialProcessor; import org.apache.oodt.cas.workflow.engine.processor.TaskProcessor; import org.apache.oodt.cas.workflow.engine.processor.WorkflowProcessor; import org.apache.oodt.cas.workflow.engine.processor.WorkflowProcessorBuilder; http://git-wip-us.apache.org/repos/asf/oodt/blob/d3ee12a2/workflow/src/test/java/org/apache/oodt/cas/workflow/instrepo/TestLuceneWorkflowInstanceRepository.java ---------------------------------------------------------------------- diff --git a/workflow/src/test/java/org/apache/oodt/cas/workflow/instrepo/TestLuceneWorkflowInstanceRepository.java b/workflow/src/test/java/org/apache/oodt/cas/workflow/instrepo/TestLuceneWorkflowInstanceRepository.java index f9d27c4..323e4cf 100644 --- a/workflow/src/test/java/org/apache/oodt/cas/workflow/instrepo/TestLuceneWorkflowInstanceRepository.java +++ b/workflow/src/test/java/org/apache/oodt/cas/workflow/instrepo/TestLuceneWorkflowInstanceRepository.java @@ -31,7 +31,6 @@ import org.apache.oodt.cas.workflow.structs.exceptions.InstanceRepositoryExcepti //JDK imports import java.io.File; import java.io.FileInputStream; -import java.io.IOException; import java.util.Iterator; import java.util.List; import java.util.Vector; http://git-wip-us.apache.org/repos/asf/oodt/blob/d3ee12a2/xmlquery/src/main/java/org/apache/oodt/xmlquery/CodecFactory.java ---------------------------------------------------------------------- diff --git a/xmlquery/src/main/java/org/apache/oodt/xmlquery/CodecFactory.java b/xmlquery/src/main/java/org/apache/oodt/xmlquery/CodecFactory.java index 8935e53..b74b238 100755 --- a/xmlquery/src/main/java/org/apache/oodt/xmlquery/CodecFactory.java +++ b/xmlquery/src/main/java/org/apache/oodt/xmlquery/CodecFactory.java @@ -18,7 +18,6 @@ package org.apache.oodt.xmlquery; -import java.io.*; import java.util.*; /** A factory for codecs. http://git-wip-us.apache.org/repos/asf/oodt/blob/d3ee12a2/xmlquery/src/main/java/org/apache/oodt/xmlquery/Header.java ---------------------------------------------------------------------- diff --git a/xmlquery/src/main/java/org/apache/oodt/xmlquery/Header.java b/xmlquery/src/main/java/org/apache/oodt/xmlquery/Header.java index 7cb7dab..8e7cf7f 100755 --- a/xmlquery/src/main/java/org/apache/oodt/xmlquery/Header.java +++ b/xmlquery/src/main/java/org/apache/oodt/xmlquery/Header.java @@ -20,7 +20,7 @@ package org.apache.oodt.xmlquery; import java.io.*; import java.util.*; -import java.util.zip.*; + import org.apache.oodt.commons.util.*; import org.w3c.dom.*; http://git-wip-us.apache.org/repos/asf/oodt/blob/d3ee12a2/xmlquery/src/main/java/org/apache/oodt/xmlquery/QueryElement.java ---------------------------------------------------------------------- diff --git a/xmlquery/src/main/java/org/apache/oodt/xmlquery/QueryElement.java b/xmlquery/src/main/java/org/apache/oodt/xmlquery/QueryElement.java index 4032e01..02e1a5c 100755 --- a/xmlquery/src/main/java/org/apache/oodt/xmlquery/QueryElement.java +++ b/xmlquery/src/main/java/org/apache/oodt/xmlquery/QueryElement.java @@ -19,8 +19,7 @@ package org.apache.oodt.xmlquery; import java.io.*; -import java.util.*; -import java.util.zip.*; + import org.apache.oodt.commons.util.*; import org.w3c.dom.*; http://git-wip-us.apache.org/repos/asf/oodt/blob/d3ee12a2/xmlquery/src/main/java/org/apache/oodt/xmlquery/Result.java ---------------------------------------------------------------------- diff --git a/xmlquery/src/main/java/org/apache/oodt/xmlquery/Result.java b/xmlquery/src/main/java/org/apache/oodt/xmlquery/Result.java index 73ad7e7..afbc65d 100755 --- a/xmlquery/src/main/java/org/apache/oodt/xmlquery/Result.java +++ b/xmlquery/src/main/java/org/apache/oodt/xmlquery/Result.java @@ -20,7 +20,7 @@ package org.apache.oodt.xmlquery; import java.io.*; import java.util.*; -import java.util.zip.*; + import org.apache.oodt.commons.util.*; import org.w3c.dom.*; import org.apache.oodt.product.Retriever; http://git-wip-us.apache.org/repos/asf/oodt/blob/d3ee12a2/xmlquery/src/main/java/org/apache/oodt/xmlquery/Results.java ---------------------------------------------------------------------- diff --git a/xmlquery/src/main/java/org/apache/oodt/xmlquery/Results.java b/xmlquery/src/main/java/org/apache/oodt/xmlquery/Results.java index 69cf39c..cfd8c9a 100755 --- a/xmlquery/src/main/java/org/apache/oodt/xmlquery/Results.java +++ b/xmlquery/src/main/java/org/apache/oodt/xmlquery/Results.java @@ -18,7 +18,6 @@ package org.apache.oodt.xmlquery; import java.util.Vector; -import org.apache.oodt.commons.util.*; /************************************************************************ ** http://git-wip-us.apache.org/repos/asf/oodt/blob/d3ee12a2/xmlquery/src/main/java/org/apache/oodt/xmlquery/StringCodec.java ---------------------------------------------------------------------- diff --git a/xmlquery/src/main/java/org/apache/oodt/xmlquery/StringCodec.java b/xmlquery/src/main/java/org/apache/oodt/xmlquery/StringCodec.java index 73713d3..cc429d3 100755 --- a/xmlquery/src/main/java/org/apache/oodt/xmlquery/StringCodec.java +++ b/xmlquery/src/main/java/org/apache/oodt/xmlquery/StringCodec.java @@ -19,7 +19,7 @@ package org.apache.oodt.xmlquery; import java.io.*; -import java.util.zip.*; + import org.apache.oodt.commons.util.*; import org.w3c.dom.*; http://git-wip-us.apache.org/repos/asf/oodt/blob/d3ee12a2/xmlquery/src/test/java/org/apache/oodt/xmlquery/CodecTest.java ---------------------------------------------------------------------- diff --git a/xmlquery/src/test/java/org/apache/oodt/xmlquery/CodecTest.java b/xmlquery/src/test/java/org/apache/oodt/xmlquery/CodecTest.java index 42b7b12..15e4017 100755 --- a/xmlquery/src/test/java/org/apache/oodt/xmlquery/CodecTest.java +++ b/xmlquery/src/test/java/org/apache/oodt/xmlquery/CodecTest.java @@ -18,12 +18,9 @@ package org.apache.oodt.xmlquery; -import java.io.*; -import java.util.*; import org.apache.oodt.commons.util.*; import junit.framework.*; import org.w3c.dom.*; -import org.xml.sax.*; /** Unit test a codec. * http://git-wip-us.apache.org/repos/asf/oodt/blob/d3ee12a2/xmlquery/src/test/java/org/apache/oodt/xmlquery/CompressedObjectCodecTest.java ---------------------------------------------------------------------- diff --git a/xmlquery/src/test/java/org/apache/oodt/xmlquery/CompressedObjectCodecTest.java b/xmlquery/src/test/java/org/apache/oodt/xmlquery/CompressedObjectCodecTest.java index e248b10..ff9d49e 100755 --- a/xmlquery/src/test/java/org/apache/oodt/xmlquery/CompressedObjectCodecTest.java +++ b/xmlquery/src/test/java/org/apache/oodt/xmlquery/CompressedObjectCodecTest.java @@ -18,12 +18,6 @@ package org.apache.oodt.xmlquery; -import java.io.*; -import java.util.*; -import org.apache.oodt.commons.util.*; -import junit.framework.*; -import org.w3c.dom.*; -import org.xml.sax.*; import org.apache.oodt.xmlquery.CompressedObjectCodec; // Imported for javadoc /** Unit test the {@link CompressedObjectCodec} class. http://git-wip-us.apache.org/repos/asf/oodt/blob/d3ee12a2/xmlquery/src/test/java/org/apache/oodt/xmlquery/CompressedStringCodecTest.java ---------------------------------------------------------------------- diff --git a/xmlquery/src/test/java/org/apache/oodt/xmlquery/CompressedStringCodecTest.java b/xmlquery/src/test/java/org/apache/oodt/xmlquery/CompressedStringCodecTest.java index 1581e5b..e7f8a79 100755 --- a/xmlquery/src/test/java/org/apache/oodt/xmlquery/CompressedStringCodecTest.java +++ b/xmlquery/src/test/java/org/apache/oodt/xmlquery/CompressedStringCodecTest.java @@ -18,13 +18,8 @@ package org.apache.oodt.xmlquery; -import java.io.*; -import java.util.*; import org.apache.oodt.xmlquery.CompressedStringCodec; // Imported for Javadoc -import org.apache.oodt.commons.util.*; -import junit.framework.*; -import org.w3c.dom.*; -import org.xml.sax.*; + /** Unit test the {@link CompressedStringCodec} class. * http://git-wip-us.apache.org/repos/asf/oodt/blob/d3ee12a2/xmlquery/src/test/java/org/apache/oodt/xmlquery/EmptyByteArrayCodecTest.java ---------------------------------------------------------------------- diff --git a/xmlquery/src/test/java/org/apache/oodt/xmlquery/EmptyByteArrayCodecTest.java b/xmlquery/src/test/java/org/apache/oodt/xmlquery/EmptyByteArrayCodecTest.java index d886f79..2d3eee6 100755 --- a/xmlquery/src/test/java/org/apache/oodt/xmlquery/EmptyByteArrayCodecTest.java +++ b/xmlquery/src/test/java/org/apache/oodt/xmlquery/EmptyByteArrayCodecTest.java @@ -18,12 +18,6 @@ package org.apache.oodt.xmlquery; -import java.io.*; -import java.util.*; -import org.apache.oodt.commons.util.*; -import junit.framework.*; -import org.w3c.dom.*; -import org.xml.sax.*; import org.apache.oodt.xmlquery.ByteArrayCodec; // Imported for javadoc /** http://git-wip-us.apache.org/repos/asf/oodt/blob/d3ee12a2/xmlquery/src/test/java/org/apache/oodt/xmlquery/HeaderTest.java ---------------------------------------------------------------------- diff --git a/xmlquery/src/test/java/org/apache/oodt/xmlquery/HeaderTest.java b/xmlquery/src/test/java/org/apache/oodt/xmlquery/HeaderTest.java index 00e5a68..5340546 100755 --- a/xmlquery/src/test/java/org/apache/oodt/xmlquery/HeaderTest.java +++ b/xmlquery/src/test/java/org/apache/oodt/xmlquery/HeaderTest.java @@ -18,12 +18,10 @@ package org.apache.oodt.xmlquery; -import java.io.*; import java.util.*; import org.apache.oodt.commons.util.*; import junit.framework.*; import org.w3c.dom.*; -import org.xml.sax.*; /** Unit test the {@link Header} class. * http://git-wip-us.apache.org/repos/asf/oodt/blob/d3ee12a2/xmlquery/src/test/java/org/apache/oodt/xmlquery/ObjectCodecTest.java ---------------------------------------------------------------------- diff --git a/xmlquery/src/test/java/org/apache/oodt/xmlquery/ObjectCodecTest.java b/xmlquery/src/test/java/org/apache/oodt/xmlquery/ObjectCodecTest.java index 99e92c6..a997a06 100755 --- a/xmlquery/src/test/java/org/apache/oodt/xmlquery/ObjectCodecTest.java +++ b/xmlquery/src/test/java/org/apache/oodt/xmlquery/ObjectCodecTest.java @@ -18,12 +18,6 @@ package org.apache.oodt.xmlquery; -import java.io.*; -import java.util.*; -import org.apache.oodt.commons.util.*; -import junit.framework.*; -import org.w3c.dom.*; -import org.xml.sax.*; import org.apache.oodt.xmlquery.ObjectCodec; // Imported for javadoc /** Unit test the {@link ObjectCodec} class. http://git-wip-us.apache.org/repos/asf/oodt/blob/d3ee12a2/xmlquery/src/test/java/org/apache/oodt/xmlquery/QueryElementTest.java ---------------------------------------------------------------------- diff --git a/xmlquery/src/test/java/org/apache/oodt/xmlquery/QueryElementTest.java b/xmlquery/src/test/java/org/apache/oodt/xmlquery/QueryElementTest.java index 01f0b0a..65109d4 100755 --- a/xmlquery/src/test/java/org/apache/oodt/xmlquery/QueryElementTest.java +++ b/xmlquery/src/test/java/org/apache/oodt/xmlquery/QueryElementTest.java @@ -18,12 +18,9 @@ package org.apache.oodt.xmlquery; -import java.io.*; -import java.util.*; import org.apache.oodt.commons.util.*; import junit.framework.*; import org.w3c.dom.*; -import org.xml.sax.*; /** Unit test the {@link QueryElement} class. * http://git-wip-us.apache.org/repos/asf/oodt/blob/d3ee12a2/xmlquery/src/test/java/org/apache/oodt/xmlquery/ResultTest.java ---------------------------------------------------------------------- diff --git a/xmlquery/src/test/java/org/apache/oodt/xmlquery/ResultTest.java b/xmlquery/src/test/java/org/apache/oodt/xmlquery/ResultTest.java index 60b8f87..350fb38 100755 --- a/xmlquery/src/test/java/org/apache/oodt/xmlquery/ResultTest.java +++ b/xmlquery/src/test/java/org/apache/oodt/xmlquery/ResultTest.java @@ -18,12 +18,10 @@ package org.apache.oodt.xmlquery; -import java.io.*; import java.util.*; import org.apache.oodt.commons.util.*; import junit.framework.*; import org.w3c.dom.*; -import org.xml.sax.*; /** Unit test the {@link Result} class. * http://git-wip-us.apache.org/repos/asf/oodt/blob/d3ee12a2/xmlquery/src/test/java/org/apache/oodt/xmlquery/StringCodecTest.java ---------------------------------------------------------------------- diff --git a/xmlquery/src/test/java/org/apache/oodt/xmlquery/StringCodecTest.java b/xmlquery/src/test/java/org/apache/oodt/xmlquery/StringCodecTest.java index 2adc0ae..b869c45 100755 --- a/xmlquery/src/test/java/org/apache/oodt/xmlquery/StringCodecTest.java +++ b/xmlquery/src/test/java/org/apache/oodt/xmlquery/StringCodecTest.java @@ -18,13 +18,8 @@ package org.apache.oodt.xmlquery; -import java.io.*; -import java.util.*; -import org.apache.oodt.commons.util.*; import org.apache.oodt.xmlquery.StringCodec; // Imported for javadoc -import junit.framework.*; -import org.w3c.dom.*; -import org.xml.sax.*; + /** Unit test the {@link StringCodec} class. * http://git-wip-us.apache.org/repos/asf/oodt/blob/d3ee12a2/xmlquery/src/test/java/org/apache/oodt/xmlquery/XMLQueryTest.java ---------------------------------------------------------------------- diff --git a/xmlquery/src/test/java/org/apache/oodt/xmlquery/XMLQueryTest.java b/xmlquery/src/test/java/org/apache/oodt/xmlquery/XMLQueryTest.java index a5a7dd3..ee90684 100755 --- a/xmlquery/src/test/java/org/apache/oodt/xmlquery/XMLQueryTest.java +++ b/xmlquery/src/test/java/org/apache/oodt/xmlquery/XMLQueryTest.java @@ -18,10 +18,8 @@ package org.apache.oodt.xmlquery; -import java.io.*; import java.util.*; import org.apache.oodt.commons.util.*; -import junit.framework.*; import org.w3c.dom.*; import org.xml.sax.*;
