This is an automated email from the git hooks/post-receive script. New commit to branch feature/3871 in repository jaxx. See http://git.nuiton.org/jaxx.git commit 18a8aeb222994e400b19dbb0a15ad9b20ff4fd03 Author: Tony CHEMIT <chemit@codelutin.com> Date: Mon Jan 18 12:15:54 2016 +0100 Fix the regression (See #3871) --- .../java/jaxx/runtime/swing/editor/SimpleTimeEditorHandler.java | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/jaxx-widgets/src/main/java/jaxx/runtime/swing/editor/SimpleTimeEditorHandler.java b/jaxx-widgets/src/main/java/jaxx/runtime/swing/editor/SimpleTimeEditorHandler.java index 493d1eb..fb9924e 100644 --- a/jaxx-widgets/src/main/java/jaxx/runtime/swing/editor/SimpleTimeEditorHandler.java +++ b/jaxx-widgets/src/main/java/jaxx/runtime/swing/editor/SimpleTimeEditorHandler.java @@ -78,15 +78,16 @@ public class SimpleTimeEditorHandler { protected final Calendar calendarHour; + protected final Calendar calendarDate; + public SimpleTimeEditorHandler(SimpleTimeEditor editor) { this.editor = editor; this.model = editor.getModel(); this.calendarMinute = Calendar.getInstance(); this.calendarHour = Calendar.getInstance(); + this.calendarDate = Calendar.getInstance(); this.propertyDateChanged = new PropertyChangeListener() { - protected final Calendar calendarDate = Calendar.getInstance(); - @Override public void propertyChange(PropertyChangeEvent evt) { Date date = (Date) evt.getNewValue(); @@ -108,8 +109,6 @@ public class SimpleTimeEditorHandler { }; this.propertyTimeChanged = new PropertyChangeListener() { - protected final Calendar calendarDate = Calendar.getInstance(); - @Override public void propertyChange(PropertyChangeEvent evt) { Integer time = (Integer) evt.getNewValue(); -- To stop receiving notification emails like this one, please contact nuiton.org SCM administrator <admin+scm@nuiton.org>.