Skip to content

Commit 35b9915

Browse files
committed
HDFS-17529. Fix some stuff
1 parent 00bca37 commit 35b9915

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

hadoop-hdfs-project/hadoop-hdfs-rbf/src/main/java/org/apache/hadoop/hdfs/server/federation/store/driver/StateStoreRecordOperations.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ <T extends BaseRecord> StateStoreOperationResult putAll(
133133
*
134134
* @param <T> Record class of the records.
135135
* @param records Records to be removed.
136-
* @return Map of record -> boolean indicating any entries being deleted by this record.
136+
* @return Map of record -> boolean indicating if the record has being removed successfully.
137137
* @throws IOException Throws exception if unable to query the data store.
138138
*/
139139
@AtMostOnce
@@ -171,7 +171,7 @@ <T extends BaseRecord> int remove(Class<T> clazz, Query<T> query)
171171
* @param clazz The class to match the records with.
172172
* @param queries Queries (logical OR) to filter what to remove.
173173
* @param <T> Record class of the records.
174-
* @return Map of query to number of records deleted by that query.
174+
* @return Map of query to number of records removed by that query.
175175
* @throws IOException Throws exception if unable to query the data store.
176176
*/
177177
@AtMostOnce

0 commit comments

Comments
 (0)