|
1 | 1 | /* |
2 | | - * Copyright (c) 2024, Oracle and/or its affiliates. All rights reserved. |
| 2 | + * Copyright (c) 2024, 2025, Oracle and/or its affiliates. All rights reserved. |
3 | 3 | * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
4 | 4 | * |
5 | 5 | * This code is free software; you can redistribute it and/or modify it |
@@ -95,22 +95,6 @@ public final class TransitionEvent extends Event { |
95 | 95 | */ |
96 | 96 | private final Duration elapsedTime; |
97 | 97 |
|
98 | | - /** |
99 | | - * Creates a new instance of the {@code TransitionEvent} class. |
100 | | - * |
101 | | - * @param eventType the event type |
102 | | - * @param property the {@code StyleableProperty} that is targeted by the transition |
103 | | - * @param elapsedTime the time that has elapsed since the transition has entered its active period |
104 | | - * @throws NullPointerException if {@code eventType}, {@code property} or {@code elapsedTime} is {@code null} |
105 | | - * @deprecated use {@link #TransitionEvent(EventType, StyleableProperty, String, Duration)} instead |
106 | | - */ |
107 | | - @Deprecated(since = "24", forRemoval = true) |
108 | | - public TransitionEvent(EventType<? extends Event> eventType, |
109 | | - StyleableProperty<?> property, |
110 | | - Duration elapsedTime) { |
111 | | - this(eventType, property, property.getCssMetaData().getProperty(), elapsedTime); |
112 | | - } |
113 | | - |
114 | 98 | /** |
115 | 99 | * Creates a new instance of the {@code TransitionEvent} class. |
116 | 100 | * |
|
0 commit comments