Polishing

This commit is contained in:
Sam Brannen
2020-08-11 16:42:18 +02:00
parent 6a2939a4d4
commit 596936f18c
6 changed files with 14 additions and 24 deletions

View File

@@ -1,5 +1,5 @@
/*
* Copyright 2002-2016 the original author or authors.
* Copyright 2002-2020 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -57,7 +57,7 @@ final class NumberToNumberConverterFactory implements ConverterFactory<Number, N
private final Class<T> targetType;
public NumberToNumber(Class<T> targetType) {
NumberToNumber(Class<T> targetType) {
this.targetType = targetType;
}

View File

@@ -1,5 +1,5 @@
/*
* Copyright 2002-2017 the original author or authors.
* Copyright 2002-2020 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -39,7 +39,7 @@ final class StringToEnumConverterFactory implements ConverterFactory<String, Enu
private final Class<T> enumType;
public StringToEnum(Class<T> enumType) {
StringToEnum(Class<T> enumType) {
this.enumType = enumType;
}