aboutsummaryrefslogtreecommitdiff
path: root/exec/java-exec/src/main/java/org/apache/drill/exec/store/dfs/shim/DrillFileSystem.java
diff options
context:
space:
mode:
Diffstat (limited to 'exec/java-exec/src/main/java/org/apache/drill/exec/store/dfs/shim/DrillFileSystem.java')
-rw-r--r--exec/java-exec/src/main/java/org/apache/drill/exec/store/dfs/shim/DrillFileSystem.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/exec/java-exec/src/main/java/org/apache/drill/exec/store/dfs/shim/DrillFileSystem.java b/exec/java-exec/src/main/java/org/apache/drill/exec/store/dfs/shim/DrillFileSystem.java
index 8af6aaf5a..a78871e4d 100644
--- a/exec/java-exec/src/main/java/org/apache/drill/exec/store/dfs/shim/DrillFileSystem.java
+++ b/exec/java-exec/src/main/java/org/apache/drill/exec/store/dfs/shim/DrillFileSystem.java
@@ -33,11 +33,11 @@ public abstract class DrillFileSystem implements AutoCloseable{
static final org.slf4j.Logger logger = org.slf4j.LoggerFactory.getLogger(DrillFileSystem.class);
public abstract FileSystem getUnderlying();
-
+
public abstract BlockLocation[] getBlockLocations(FileStatus status, long start, long length) throws IOException;
public abstract List<FileStatus> list(boolean recursive, Path... paths) throws IOException;
public abstract FileStatus getFileStatus(Path p) throws IOException;
public abstract DrillOutputStream create(Path p) throws IOException;
public abstract DrillInputStream open(Path p) throws IOException;
-
+
}