Skip to content

Commit

Permalink
Make checkstyle happy
Browse files Browse the repository at this point in the history
  • Loading branch information
scordio committed Nov 14, 2022
1 parent a983a5a commit 6aba72a
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -55,10 +55,12 @@ public V getValue() {
return value;
}

// CHECKSTYLE OFF: HiddenField
@Override
public V setValue(V value) {
throw new UnsupportedOperationException();
}
// CHECKSTYLE ON: HiddenField
}

static final class HashCodeContractHonored<K, V> implements Map.Entry<K, V> {
Expand Down Expand Up @@ -95,9 +97,11 @@ public V getValue() {
return value;
}

// CHECKSTYLE OFF: HiddenField
@Override
public V setValue(V value) {
throw new UnsupportedOperationException();
}
// CHECKSTYLE ON: HiddenField
}
}

0 comments on commit 6aba72a

Please sign in to comment.