mirror of
https://github.com/apache/commons-collections.git
synced 2025-02-10 03:56:11 +00:00
PMD: Avoid modifiers which are implied by the context.
This commit is contained in:
parent
c4190304ba
commit
bce159a0c9
@ -111,7 +111,7 @@ public class CollectionUtils {
|
||||
return getFreq(obj, cardinalityB);
|
||||
}
|
||||
|
||||
private final int getFreq(final Object obj, final Map<?, Integer> freqMap) {
|
||||
private int getFreq(final Object obj, final Map<?, Integer> freqMap) {
|
||||
final Integer count = freqMap.get(obj);
|
||||
if (count != null) {
|
||||
return count.intValue();
|
||||
|
Loading…
x
Reference in New Issue
Block a user