DATACMNS-736 - Fixed validation error message in PointFormatter.
PointFormatter error message now states it's expecting comma separated values. Previously it erroneously reported expecting a semicolon. Original pull request: #134.
This commit is contained in:
committed by
Oliver Gierke
parent
e3668c621d
commit
a597549c4e
@@ -35,7 +35,7 @@ public enum PointFormatter implements Converter<String, Point>, Formatter<Point>
|
||||
|
||||
public static final ConvertiblePair CONVERTIBLE = new ConvertiblePair(String.class, Point.class);
|
||||
|
||||
private static final String INVALID_FORMAT = "Expected two doubles separated by a semicolon but got '%s'!";
|
||||
private static final String INVALID_FORMAT = "Expected two doubles separated by a comma but got '%s'!";
|
||||
|
||||
/*
|
||||
* (non-Javadoc)
|
||||
|
||||
Reference in New Issue
Block a user