diff --git a/CHANGELOG.md b/CHANGELOG.md index 7bf777d8..067431ae 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,9 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## [1.3.0] - unreleased +## [1.4.0] - unreleased + +## [1.3.0] 2021-01-09 See [Release](https://github.com/itsallcode/white-rabbit/releases/tag/v1.3.0) / [Milestone](https://github.com/itsallcode/white-rabbit/milestone/5?closed=1) @@ -16,6 +18,7 @@ See [Release](https://github.com/itsallcode/white-rabbit/releases/tag/v1.3.0) / * [#9](https://github.com/itsallcode/white-rabbit/issues/9): Add vacation and project report. ### Fixed + * [#62](https://github.com/itsallcode/white-rabbit/issues/62): Fix editing table cells. ## [1.2.0] 2020-12-05 diff --git a/jfxui/src/uiTest/java/org/itsallcode/whiterabbit/jfxui/testutil/TimeUtil.java b/jfxui/src/uiTest/java/org/itsallcode/whiterabbit/jfxui/testutil/TimeUtil.java index 8f3a5ee4..09ab4aec 100644 --- a/jfxui/src/uiTest/java/org/itsallcode/whiterabbit/jfxui/testutil/TimeUtil.java +++ b/jfxui/src/uiTest/java/org/itsallcode/whiterabbit/jfxui/testutil/TimeUtil.java @@ -76,7 +76,6 @@ public static TimeUtil start(Instant initialTime) private static boolean shouldRunExecutor(long delayMillis, Runnable runnable) { - System.out.println(runnable.toString()); return delayMillis == DelayedPropertyListener.DELAY.toMillis() && runnable.toString() .startsWith("DelegatingErrorHandlingRunnable for " + DelayedPropertyListener.class.getName());