eclipse.platform icon indicating copy to clipboard operation
eclipse.platform copied to clipboard

Clean Code for debug/org.eclipse.ui.console

Open eclipse-platform-bot opened this issue 1 month ago • 1 comments

The following cleanups were applied:

  • Add final modifier to private fields
  • Add missing '@Deprecated' annotations
  • Add missing '@Override' annotations
  • Add missing '@Override' annotations to implementations of interface methods
  • Convert control statement bodies to block
  • Make inner classes static where possible
  • Remove trailing white spaces on all lines
  • Remove unnecessary array creation for varargs
  • Remove unnecessary suppress warning tokens
  • Remove unused imports
  • Remove unused private constructors
  • Remove unused private fields
  • Remove unused private methods
  • Remove unused private types
  • Replace deprecated calls with inlined content where possible
  • Use pattern matching for instanceof

eclipse-platform-bot avatar Nov 14 '25 03:11 eclipse-platform-bot

Test Results

 1 953 files  + 54   1 953 suites  +54   1h 24m 39s ⏱️ - 4m 40s  4 745 tests ±  0   4 721 ✅ +  2   24 💤 ±0  0 ❌ ±0  14 235 runs  +306  14 053 ✅ +308  182 💤 ±0  0 ❌ ±0 

Results for commit 62e5b882. ± Comparison against base commit 9fb40631.

:recycle: This comment has been updated with latest results.

github-actions[bot] avatar Nov 14 '25 03:11 github-actions[bot]

This pull request changes some projects for the first time in this development cycle. Therefore the following files need a version increment:

debug/org.eclipse.ui.console/META-INF/MANIFEST.MF

An additional commit containing all the necessary changes was pushed to the top of this PR's branch. To obtain these changes (for example if you want to push more changes) either fetch from your fork or apply the git patch.

Git patch
From 43ec15506115cf5b809733038e071771d36e4208 Mon Sep 17 00:00:00 2001
From: Eclipse Platform Bot <[email protected]>
Date: Fri, 19 Dec 2025 03:19:40 +0000
Subject: [PATCH] Version bump(s) for 4.39 stream


diff --git a/debug/org.eclipse.ui.console/META-INF/MANIFEST.MF b/debug/org.eclipse.ui.console/META-INF/MANIFEST.MF
index 532662eaff..0fa8e02da9 100644
--- a/debug/org.eclipse.ui.console/META-INF/MANIFEST.MF
+++ b/debug/org.eclipse.ui.console/META-INF/MANIFEST.MF
@@ -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.15.0.qualifier
+Bundle-Version: 3.15.100.qualifier
 Bundle-Activator: org.eclipse.ui.console.ConsolePlugin
 Bundle-Vendor: %providerName
 Bundle-Localization: plugin
-- 
2.52.0

Further information are available in Common Build Issues - Missing version increments.

eclipse-platform-bot avatar Dec 01 '25 03:12 eclipse-platform-bot

Merging this one in as one has to suppress removal for methods marked for removals to hide the warning which I don't believe is the correct thing here.

akurtakov avatar Dec 23 '25 08:12 akurtakov