Changed import order to what is expected
Project: http://git-wip-us.apache.org/repos/asf/incubator-apex-malhar/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-apex-malhar/commit/855fe0aa Tree: http://git-wip-us.apache.org/repos/asf/incubator-apex-malhar/tree/855fe0aa Diff: http://git-wip-us.apache.org/repos/asf/incubator-apex-malhar/diff/855fe0aa Branch: refs/heads/devel-3 Commit: 855fe0aa88833ff117daadf167b594e8fdb25682 Parents: c85a418 Author: Pramod Immaneni <[email protected]> Authored: Sun Sep 27 15:31:12 2015 -0700 Committer: Pramod Immaneni <[email protected]> Committed: Sun Sep 27 15:31:12 2015 -0700 ---------------------------------------------------------------------- .../io/fs/AbstractFileInputOperatorTest.java | 21 ++++++++++---------- 1 file changed, 11 insertions(+), 10 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-apex-malhar/blob/855fe0aa/library/src/test/java/com/datatorrent/lib/io/fs/AbstractFileInputOperatorTest.java ---------------------------------------------------------------------- diff --git a/library/src/test/java/com/datatorrent/lib/io/fs/AbstractFileInputOperatorTest.java b/library/src/test/java/com/datatorrent/lib/io/fs/AbstractFileInputOperatorTest.java index d50ec17..24d9fc1 100644 --- a/library/src/test/java/com/datatorrent/lib/io/fs/AbstractFileInputOperatorTest.java +++ b/library/src/test/java/com/datatorrent/lib/io/fs/AbstractFileInputOperatorTest.java @@ -19,11 +19,11 @@ import java.io.File; import java.io.IOException; import java.util.*; -import com.esotericsoftware.kryo.Kryo; -import com.google.common.collect.ImmutableSet; -import com.google.common.collect.Lists; -import com.google.common.collect.Maps; -import com.google.common.collect.Sets; +import org.junit.Assert; +import org.junit.Rule; +import org.junit.Test; +import org.junit.rules.TestWatcher; +import org.junit.runner.Description; import org.apache.commons.io.FileUtils; import org.apache.commons.lang3.StringUtils; @@ -31,11 +31,12 @@ import org.apache.hadoop.conf.Configuration; import org.apache.hadoop.fs.FileContext; import org.apache.hadoop.fs.FileSystem; import org.apache.hadoop.fs.Path; -import org.junit.Assert; -import org.junit.Rule; -import org.junit.Test; -import org.junit.rules.TestWatcher; -import org.junit.runner.Description; + +import com.esotericsoftware.kryo.Kryo; +import com.google.common.collect.ImmutableSet; +import com.google.common.collect.Lists; +import com.google.common.collect.Maps; +import com.google.common.collect.Sets; import com.datatorrent.lib.helper.OperatorContextTestHelper; import com.datatorrent.lib.io.IdempotentStorageManager;
