enum constructors are already private

This commit is contained in:
Bruno P. Kinoshita 2019-02-16 21:39:30 +13:00
parent 61049275b0
commit 3742db4b28
1 changed files with 1 additions and 1 deletions

View File

@ -90,7 +90,7 @@ public class TreeBidiMap<K extends Comparable<K>, V extends Comparable<V>>
*
* @param description the description for the element
*/
private DataElement(final String description) {
DataElement(final String description) {
this.description = description;
}