Merge branch 'fix-checkstyle-pmd-issues'

This closes #65
This commit is contained in:
Bruno P. Kinoshita 2019-01-20 16:23:19 +13:00
commit 441dbb2e25
3 changed files with 2 additions and 3 deletions

View File

@ -97,7 +97,7 @@ public class SetUtils {
return set;
}
}
/**
* An empty unmodifiable sorted set.
* This is not provided in the JDK.

View File

@ -16,7 +16,6 @@
*/
package org.apache.commons.collections4.list;
import java.lang.reflect.Constructor;
import java.lang.reflect.InvocationTargetException;
import java.util.ArrayList;
import java.util.Collection;

View File

@ -111,7 +111,7 @@ public abstract class AbstractReferenceMap<K, V> extends AbstractHashedMap<K, V>
}
}
private ReferenceStrength(final int value) {
ReferenceStrength(final int value) {
this.value = value;
}