HADOOP-6114. Fix javadoc documentation for FileStatus.getLen.
(Dmitry Rzhevskiy via dhruba) git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@790277 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
b8d9ca281d
commit
cf3d3a0643
@ -862,6 +862,9 @@ Trunk (unreleased changes)
|
||||
HADOOP-6122. The great than operator in test-patch.sh should be "-gt" but
|
||||
not ">". (szetszwo)
|
||||
|
||||
HADOOP-6114. Fix javadoc documentation for FileStatus.getLen.
|
||||
(Dmitry Rzhevskiy via dhruba)
|
||||
|
||||
Release 0.20.1 - Unreleased
|
||||
|
||||
INCOMPATIBLE CHANGES
|
||||
|
@ -67,8 +67,9 @@ public FileStatus(long length, boolean isdir, int block_replication,
|
||||
this.path = path;
|
||||
}
|
||||
|
||||
/*
|
||||
* @return the length of this file, in blocks
|
||||
/**
|
||||
* Get the length of this file, in bytes.
|
||||
* @return the length of this file, in bytes.
|
||||
*/
|
||||
public long getLen() {
|
||||
return length;
|
||||
|
Loading…
Reference in New Issue
Block a user