Bläddra i källkod

HADOOP-13072. WindowsGetSpaceUsed constructor should be public (Vinayakumar B via cmccabe)

(cherry picked from commit 2beedead72ee9efb69218aaf587de585158d6a1c)
(cherry picked from commit b16c376c3b62ec60aac4041099c4235bdaca815e)
Colin Patrick Mccabe 9 år sedan
förälder
incheckning
ef9e7a10e4

+ 2 - 1
hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/fs/WindowsGetSpaceUsed.java

@@ -32,7 +32,8 @@ import java.io.IOException;
 public class WindowsGetSpaceUsed extends CachingGetSpaceUsed {
 public class WindowsGetSpaceUsed extends CachingGetSpaceUsed {
 
 
 
 
-  WindowsGetSpaceUsed(CachingGetSpaceUsed.Builder builder) throws IOException {
+  public WindowsGetSpaceUsed(CachingGetSpaceUsed.Builder builder)
+      throws IOException {
     super(builder.getPath(), builder.getInterval(), builder.getInitialUsed());
     super(builder.getPath(), builder.getInterval(), builder.getInitialUsed());
   }
   }