Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@
* @deprecated As of 3.2, replaced by {@link TextViewerUndoManager}
* @noextend This class is not intended to be subclassed by clients.
*/
@Deprecated
@Deprecated(forRemoval= true, since= "2025-03")
public class DefaultUndoManager implements IUndoManager, IUndoManagerExtension {

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,10 @@
*/
public class DefaultUndoManagerTest extends AbstractUndoManagerTest {

@SuppressWarnings("removal")
@Override
protected IUndoManager createUndoManager(int maxUndoLevel) {
return new DefaultUndoManager(maxUndoLevel);

Check warning on line 29 in tests/org.eclipse.jface.text.tests/src/org/eclipse/jface/text/tests/DefaultUndoManagerTest.java

View check run for this annotation

Jenkins - Eclipse Platform / Compiler and API Tools

Deprecation

NORMAL: The constructor DefaultUndoManager(int) is deprecated since version 2025-03
}

}
Loading