Skip to content

Commit

Permalink
Removed a system.out
Browse files Browse the repository at this point in the history
  • Loading branch information
dlemmermann committed Sep 27, 2022
1 parent 91ee07a commit f1ac638
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1006,7 +1006,7 @@ private void trimTimeBounds() {
setVisibleHours(Math.min(24, (int) getStartTime().until(getEndTime(), ChronoUnit.HOURS)));
}

private final ObjectProperty<BiConsumer<Instant, Instant>> onLassoFinished = new SimpleObjectProperty<>(this, "onLassoFinished", (start, end) -> System.out.println("lasso start: " + getLassoStart() + ", lasso end: " + getLassoEnd()));
private final ObjectProperty<BiConsumer<Instant, Instant>> onLassoFinished = new SimpleObjectProperty<>(this, "onLassoFinished", (start, end) -> {});

public final BiConsumer<Instant, Instant> getOnLassoFinished() {
return onLassoFinished.get();
Expand Down

0 comments on commit f1ac638

Please sign in to comment.