HDFS-9191. Typo in Hdfs.java. NoSuchElementException is misspelled. Contributed by Catherine Palmer.
This commit is contained in:
parent
c6cafc77e6
commit
3929ac9340
|
@ -350,6 +350,9 @@ Trunk (Unreleased)
|
|||
|
||||
HDFS-8800. hdfs --daemon stop namenode corrupts logs (John Smith via aw)
|
||||
|
||||
HDFS-9191. Typo in Hdfs.java. NoSuchElementException is misspelled.
|
||||
(Catherine Palmer via jghoman)
|
||||
|
||||
Release 2.8.0 - UNRELEASED
|
||||
|
||||
NEW FEATURES
|
||||
|
|
|
@ -238,7 +238,7 @@ public class Hdfs extends AbstractFileSystem {
|
|||
* @return the next item in the list
|
||||
*
|
||||
* @throws IOException if there is any error
|
||||
* @throws NoSuchElmentException if no more entry is available
|
||||
* @throws NoSuchElementException if no more entry is available
|
||||
*/
|
||||
public HdfsFileStatus getNext() throws IOException {
|
||||
if (hasNext()) {
|
||||
|
|
Loading…
Reference in New Issue