branch develop updated (6ed2d60 -> d30b195)
This is an automated email from the git hooks/post-receive script. New change to branch develop in repository jaxx. See https://gitlab.nuiton.org/nuiton/jaxx.git from 6ed2d60 Do not display UIHandler warning on abstract classes (Fixes #4081) new d30b195 For DMD editor, we should consider for minutes and degres that value 5 equals 50 and not 05 (Fixes #4093) The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference. Detailed log of new commits: commit d30b1959a1b5f838bf2b7ae486b397d4fb13b4e0 Author: Tony CHEMIT <chemit@codelutin.com> Date: Sat Dec 10 17:13:45 2016 +0100 For DMD editor, we should consider for minutes and degres that value 5 equals 50 and not 05 (Fixes #4093) Summary of changes: .../main/java/org/nuiton/jaxx/widgets/gis/DmdCoordinateConverter.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) -- To stop receiving notification emails like this one, please contact nuiton.org SCM administrator <admin+scm@nuiton.org>.
This is an automated email from the git hooks/post-receive script. New commit to branch develop in repository jaxx. See https://gitlab.nuiton.org/nuiton/jaxx.git commit d30b1959a1b5f838bf2b7ae486b397d4fb13b4e0 Author: Tony CHEMIT <chemit@codelutin.com> Date: Sat Dec 10 17:13:45 2016 +0100 For DMD editor, we should consider for minutes and degres that value 5 equals 50 and not 05 (Fixes #4093) --- .../main/java/org/nuiton/jaxx/widgets/gis/DmdCoordinateConverter.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/jaxx-widgets-gis/src/main/java/org/nuiton/jaxx/widgets/gis/DmdCoordinateConverter.java b/jaxx-widgets-gis/src/main/java/org/nuiton/jaxx/widgets/gis/DmdCoordinateConverter.java index 0bc2a24..963f205 100644 --- a/jaxx-widgets-gis/src/main/java/org/nuiton/jaxx/widgets/gis/DmdCoordinateConverter.java +++ b/jaxx-widgets-gis/src/main/java/org/nuiton/jaxx/widgets/gis/DmdCoordinateConverter.java @@ -133,8 +133,8 @@ public class DmdCoordinateConverter implements NuitonConverter<DmdCoordinate> { DmdCoordinate.COORDINATE_STRING_PATTERN, signStr, StringUtils.leftPad(degreeStr, forLongitude ? 3 : 2, nullValue.equals(degreeStr) ? ' ' : fillChar), - StringUtils.leftPad(minuteStr, 2, nullValue.equals(minuteStr) ? ' ' : fillChar), - StringUtils.leftPad(decimalStr, 2, nullValue.equals(decimalStr) ? ' ' : fillChar)); + StringUtils.rightPad(minuteStr, 2, nullValue.equals(minuteStr) ? ' ' : fillChar), + StringUtils.rightPad(decimalStr, 2, nullValue.equals(decimalStr) ? ' ' : fillChar)); } } return aClass.cast(result); -- To stop receiving notification emails like this one, please contact nuiton.org SCM administrator <admin+scm@nuiton.org>.
participants (1)
-
nuiton.org scm