Drop unneeded generic type specifiers
[yangtools.git] / yang / yang-model-util / src / main / java / org / opendaylight / yangtools / yang / model / util / type / JavaLengthConstraints.java
index 26c88398edffd29daadb09ec4c25ecb4977e0ff8..dcf11c5bafcfeb6a9948c2982e10d5e37e7ce651 100644 (file)
@@ -19,5 +19,5 @@ final class JavaLengthConstraints {
     }
 
     static final List<LengthConstraint> INTEGER_SIZE_CONSTRAINTS = ImmutableList.of(
-        BaseConstraints.newLengthConstraint(0, Integer.MAX_VALUE, Optional.<String>absent(), Optional.<String>absent()));
+        BaseConstraints.newLengthConstraint(0, Integer.MAX_VALUE, Optional.absent(), Optional.absent()));
 }