HADOOP-13072. WindowsGetSpaceUsed constructor should be public (Vinayakumar B via cmccabe)
This commit is contained in:
parent
971af603ea
commit
2beedead72
|
@ -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());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue