Skip to content
Closed
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
2 changes: 1 addition & 1 deletion debug/org.eclipse.ui.console/META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: %pluginName
Bundle-SymbolicName: org.eclipse.ui.console; singleton:=true
Bundle-Version: 3.14.400.qualifier
Bundle-Version: 3.14.500.qualifier
Bundle-Activator: org.eclipse.ui.console.ConsolePlugin
Bundle-Vendor: %providerName
Bundle-Localization: plugin
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -788,8 +788,7 @@
int top = textWidget.getTopIndex();
if (top > -1) {
// scroll vertically
@SuppressWarnings("deprecation")
int lines = getVisibleLinesInViewport();

Check warning on line 791 in debug/org.eclipse.ui.console/src/org/eclipse/ui/console/TextConsoleViewer.java

View check run for this annotation

Jenkins - Eclipse Platform / Compiler

Deprecation

NORMAL: The method getVisibleLinesInViewport() from the type TextViewer has been deprecated since version 2025-12 and marked for removal
int bottom = top + lines;

// two lines at the top and the bottom should always be left
Expand Down
Loading