File tree 2 files changed +0
-33
lines changed
undofx/src/main/java/org/fxmisc/undo
2 files changed +0
-33
lines changed Original file line number Diff line number Diff line change @@ -60,28 +60,6 @@ interface UndoPosition {
60
60
Val <C > nextRedoProperty ();
61
61
default C getNextRedo () { return nextRedoProperty ().getValue (); }
62
62
63
- /**
64
- * Gives a peek at the change that will be undone by {@link #undo()}.
65
- *
66
- * @deprecated use {@link #nextUndoProperty()}
67
- */
68
- @ Deprecated
69
- default Val <C > nextToUndoProperty () { return nextUndoProperty (); }
70
-
71
- @ Deprecated
72
- default C getNextToUndo () { return nextUndoProperty ().getValue (); }
73
-
74
- /**
75
- * Gives a peek at the change that will be redone by {@link #redo()}.
76
- *
77
- * @deprecated use {@link #nextRedoProperty()}
78
- */
79
- @ Deprecated
80
- default Val <C > nextToRedoProperty () { return nextRedoProperty (); }
81
-
82
- @ Deprecated
83
- default C getNextToRedo () { return nextRedoProperty ().getValue (); }
84
-
85
63
/**
86
64
* Indicates whether there is a change that can be redone.
87
65
*/
Original file line number Diff line number Diff line change @@ -179,17 +179,6 @@ public Val<C> nextRedoProperty() {
179
179
return nextRedo ;
180
180
}
181
181
182
-
183
- @ Override
184
- public Val <C > nextToUndoProperty () {
185
- return nextUndo ;
186
- }
187
-
188
- @ Override
189
- public Val <C > nextToRedoProperty () {
190
- return nextRedo ;
191
- }
192
-
193
182
@ Override
194
183
public boolean isUndoAvailable () {
195
184
return nextUndo .isPresent ();
You can’t perform that action at this time.
0 commit comments