aboutsummaryrefslogtreecommitdiff
path: root/exec/java-exec/src/main/java/org/apache/drill/exec/store/dfs/FileSelection.java
diff options
context:
space:
mode:
Diffstat (limited to 'exec/java-exec/src/main/java/org/apache/drill/exec/store/dfs/FileSelection.java')
-rw-r--r--exec/java-exec/src/main/java/org/apache/drill/exec/store/dfs/FileSelection.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/exec/java-exec/src/main/java/org/apache/drill/exec/store/dfs/FileSelection.java b/exec/java-exec/src/main/java/org/apache/drill/exec/store/dfs/FileSelection.java
index 4fbe87cd6..76f6be4d9 100644
--- a/exec/java-exec/src/main/java/org/apache/drill/exec/store/dfs/FileSelection.java
+++ b/exec/java-exec/src/main/java/org/apache/drill/exec/store/dfs/FileSelection.java
@@ -21,7 +21,6 @@ import java.io.IOException;
import java.util.Collections;
import java.util.List;
-import com.google.common.base.Preconditions;
import org.apache.commons.lang.ArrayUtils;
import org.apache.commons.lang3.StringUtils;
import org.apache.drill.exec.store.dfs.shim.DrillFileSystem;
@@ -29,6 +28,7 @@ import org.apache.hadoop.fs.FileStatus;
import org.apache.hadoop.fs.Path;
import com.fasterxml.jackson.annotation.JsonIgnore;
+import com.google.common.base.Preconditions;
import com.google.common.collect.Lists;
/**
@@ -52,7 +52,7 @@ public class FileSelection {
this.files = files;
this.selectionRoot = selectionRoot;
}
-
+
public FileSelection(List<String> files, boolean dummy){
this.files = files;
}
@@ -108,7 +108,7 @@ public class FileSelection {
}
return files;
}
-
+
private void init(DrillFileSystem fs) throws IOException {
if (files != null && statuses == null) {
statuses = Lists.newArrayList();