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

This commit is contained in:
Colin Patrick Mccabe 2016-05-02 08:58:32 -07:00
parent 971af603ea
commit 2beedead72
1 changed files with 2 additions and 1 deletions

View File

@ -32,7 +32,8 @@
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());
}