Skip to content

Commit 43538ea

Browse files
committed
Reduce vertical whitespace
1 parent c428164 commit 43538ea

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/main/java/org/apache/commons/lang3/reflect/TypeLiteral.java

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -89,10 +89,8 @@ public abstract class TypeLiteral<T> implements Typed<T> {
8989
* Constructs a new instance.
9090
*/
9191
protected TypeLiteral() {
92-
this.value =
93-
Validate.notNull(TypeUtils.getTypeArguments(getClass(), TypeLiteral.class).get(T),
92+
this.value = Validate.notNull(TypeUtils.getTypeArguments(getClass(), TypeLiteral.class).get(T),
9493
"%s does not assign type parameter %s", getClass(), TypeUtils.toLongString(T));
95-
9694
this.toString = String.format("%s<%s>", TypeLiteral.class.getSimpleName(), TypeUtils.toString(value));
9795
}
9896

0 commit comments

Comments
 (0)