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:
David Syer
2015-07-21 15:33:28 +01:00
committed by Oliver Gierke
parent e3668c621d
commit a597549c4e

View File

@@ -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)