Skip to content

Commit

Permalink
fix "Invalid delete operation" mistake for set operation
Browse files Browse the repository at this point in the history
"Invalid delete operation" -> "Invalid set operation" in set method
  • Loading branch information
hexmind committed Oct 14, 2018
1 parent 6c738c9 commit 16df8c3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ Object getAccessor() {

@Override
public void set(Object newVal, Configuration configuration) {
throw new InvalidModificationException("Invalid delete operation");
throw new InvalidModificationException("Invalid set operation");
}

public void convert(MapFunction mapFunction, Configuration configuration){
Expand Down

0 comments on commit 16df8c3

Please sign in to comment.