Skip to content

Commit

Permalink
Fixed the name used for the ANY event type of CalendarEvent. There se…
Browse files Browse the repository at this point in the history
…em to be additional checks in newer JavaFX versions that notice that the previous name "ANY" was already used by one of the super type events.
  • Loading branch information
dlemmermann committed Sep 20, 2023
1 parent 0f19281 commit de1df87
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ public class CalendarEvent extends Event {
/**
* The supertype of all event types in this event class.
*/
public static final EventType<CalendarEvent> ANY = new EventType<>(Event.ANY, "ANY");
public static final EventType<CalendarEvent> ANY = new EventType<>(Event.ANY, "CALENDAR");

/**
* An event type used to inform the application that "something" inside the
Expand Down

0 comments on commit de1df87

Please sign in to comment.