fs stats should be public

This commit is contained in:
Shay Banon 2012-02-13 15:06:08 +02:00
parent 0ff84d222f
commit 2114751d12

View File

@ -200,7 +200,7 @@ public class NodeStats extends NodeOperationResponse {
* File system level stats.
*/
@Nullable
FsStats fs() {
public FsStats fs() {
return fs;
}
@ -208,7 +208,7 @@ public class NodeStats extends NodeOperationResponse {
* File system level stats.
*/
@Nullable
FsStats getFs() {
public FsStats getFs() {
return fs();
}