Skip to content

Commit

Permalink
Showing 2 changed files with 10 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -240,6 +240,11 @@ public Object setValue(Object value) {
return entryResult;
}

@Override
public void remove() {
throw new UnsupportedOperationException();
}

};
}

Original file line number Diff line number Diff line change
@@ -163,6 +163,11 @@ public Object setValue(Object value) {
return entryResult;
}

@Override
public void remove() {
throw new UnsupportedOperationException();
}

};
}

0 comments on commit 6275074

Please sign in to comment.