assert of length 1
This commit is contained in:
parent
11657b54e0
commit
622357291c
|
|
@ -23,7 +23,7 @@ package org.springframework.core.convert.converter;
|
||||||
public class StringToCharacter implements Converter<String, Character> {
|
public class StringToCharacter implements Converter<String, Character> {
|
||||||
|
|
||||||
public Character convert(String source) throws Exception {
|
public Character convert(String source) throws Exception {
|
||||||
if (source.length() > 1) {
|
if (source.length() != 1) {
|
||||||
throw new IllegalArgumentException("To be a Character the String '" + source + "' must have a length of 1");
|
throw new IllegalArgumentException("To be a Character the String '" + source + "' must have a length of 1");
|
||||||
}
|
}
|
||||||
return new Character(source.charAt(0));
|
return new Character(source.charAt(0));
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue