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

(cherry picked from commit 2beedead72)
This commit is contained in:
Colin Patrick Mccabe 2016-05-02 08:58:32 -07:00
parent 162f5b8178
commit b16c376c3b
1 changed files with 2 additions and 1 deletions

View File

@ -32,7 +32,8 @@ import java.io.IOException;
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());
}