Skip to content

Commit

Permalink
Corrected a typo in a method name
Browse files Browse the repository at this point in the history
  • Loading branch information
Tatsuya Kawano committed Aug 21, 2010
1 parent 50dd6e0 commit e3371ef
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/hfileinput/v2/KeyValueRowMergeScanner.java
Expand Up @@ -34,7 +34,7 @@ public int getMaxVersions() {
return 1;
}

// public NavigableSet<byte[]> getColumnsToIncludes() {
// public NavigableSet<byte[]> getColumnsToInclude() {
// throw new UnsupportedOperationException();
// }

Expand Down
2 changes: 1 addition & 1 deletion src/hfileinput/v2/KeyValueRowScanner.java
Expand Up @@ -8,7 +8,7 @@ public interface KeyValueRowScanner {

int getMaxVersions();

// NavigableSet<byte[]> getColumnsToIncludes();
// NavigableSet<byte[]> getColumnsToInclude();

ImmutableBytesWritable peekRowID();

Expand Down
2 changes: 1 addition & 1 deletion src/org/apache/hadoop/hbase/io/hfile/HFileRowScanner.java
Expand Up @@ -48,7 +48,7 @@ public int getMaxVersions() {
return 1;
}

// public NavigableSet<byte[]> getColumnsToIncludes() {
// public NavigableSet<byte[]> getColumnsToInclude() {
// throw new UnsupportedOperationException();
// }

Expand Down

0 comments on commit e3371ef

Please sign in to comment.