Skip to main content
aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
2015-09-07Bug 476814 - Replace Boolean.valueOf(true) and (false)Alex Blewitt1-2/+2
References to Boolean.valueOf(true) and Boolean.valueOf(false) can be converted to constant references Boolean.TRUE and Boolean.FALSE. Change-Id: I075a579f65e9a5fefdfa2824bf284d6f2490d6fc Signed-off-by: Alex Blewitt <alex.blewitt@gmail.com>
2015-09-03Bug 474074 - Replace new Boolean with Boolean.valueOfI20150908-0800Alex Blewitt4-12/+10
Using `new Boolean()` results in the creation of a new object on the heap, when the flyweight `Boolean.TRUE` and `Boolean.FALSE` are available. Java 1.4 added a `Boolean.valueOf()` which can be used in place of `new Boolean()` but which will use the existing flyweight values instead. Globally change `new Boolean(...)` to `Boolean.valueOf(...)` and replace `new Boolean(...).booleanValue()` to `Boolean.parseBoolean(...)`. Change-Id: I95bed6f2af0293c20d1ac7076ca151b85d1f962d Signed-off-by: Alex Blewitt <alex.blewitt@gmail.com>
2015-08-22Revert "Bug 76936 - [console] Eclipse Console window does not handle \b, \f, ↵I20150901-0800I20150825-0800Sarika Sinha1-147/+1
and \r " This reverts commit 84f42b7ba42b87423f99d3e2e991d2e59c04de4d. Change-Id: Ic2d2982a5a32444a9fda07ac07fc9da5c685f72f
2015-08-19Bug 471835 - Build succeeds, even when "old" parent pom is referred toMarkus Keller1-12/+22
2015-07-29Upgraded Bundle version for NeonI20150818-0800I20150811-1400I20150805-2000I20150805-0800I20150804-2000I20150804-0800I20150803-2000I20150803-0800I20150802-2000Sarika Sinha2-3/+3
Change-Id: Idde64cbd255f28f4d6b5467a2ed346100e650560
2015-07-29Bug 473081 - Scroll locks enables on empty consoleSarika Sinha1-3/+20
Change-Id: I5b25227ede618c793b23b3e01a2f8d070be01884
2015-07-09Increased Bundle version for NeonI20150728-0800I20150721-0800I20150714-0800Sarika Sinha2-3/+3
Change-Id: I758ace09d9ad035e87875ed1852651ea45e224ad
2015-07-09Bug 471829 - Changing "Allocate console" in Common tab doesn't mark itStephan Wahlbrink1-1/+8
dirty Added missing selection listener updating the launch config dialog. Change-Id: Ic3729457a44e04ad00d4b4eaa47bb1c851639915 Signed-off-by: Stephan Wahlbrink <sw@wahlbrink.eu>
2015-07-02Bug 469765: Prep for 4.6 (Neon) and 4.5 (Mars) maintenance builds - update ↵I20150707-0800Markus Keller12-13/+13
parent poms for 4.6
2015-05-14Fixed bug 467309: NPE in LaunchViewBreadcrumb.disposeR4_5I20150603-2000I20150602-2000I20150601-2000I20150531-2000I20150529-2000I20150528-0700I20150527-2010I20150526-2010I20150525-2000I20150524-2000I20150522-2000I20150521-1715I20150521-1400I20150521-1100I20150520-2000I20150519-2000I20150519-1000I20150519-0030I20150518-2000I20150517-2000I20150516-1500I20150515-2000I20150514-2000I20150514-1000Dani Megert1-3/+5
2015-05-12Bug 466790 - LaunchView (Debug view) leaks closed instances viaI20150513-2000I20150512-2100I20150512-2000Sarika Sinha1-0/+1
BreadcrumbPage Change-Id: I0867f3fa8211f04958e38eada06594e049d60548
2015-05-12Bug 466790 - LaunchView (Debug view) leaks closed instances viaAndrey Loskutov1-0/+4
BreadcrumbPage Change-Id: If54ace1cdd0f2717e445787e00a76654c6320cc4 Signed-off-by: Andrey Loskutov <loskutov@gmx.de>
2015-05-12Bug 466789 - ConsoleView leaks closed console views viaSarika Sinha1-0/+1
ConsoleDropDownAction Change-Id: Ibd24f7b16c8bb274e6664dc95cbea66e46b28a1f
2015-05-10Bug 466789 - ConsoleView leaks closed console views viaAndrey Loskutov1-4/+5
ConsoleDropDownAction Signed-off-by: Andrey Loskutov <loskutov@gmx.de>
2015-04-29Bug 440033 - InjectionException: java.lang.StackOverflowError inI20150511-2130I20150511-2000I20150510-2000I20150509-1500I20150508-2000I20150507-2000I20150506-2000I20150505-2000I20150504-2000I20150503-2000I20150502-1500I20150501-2000I20150430-1445I20150429-2000I20150429-1330I20150429-1230Anton Leherbauer1-4/+8
org.eclipse.e4.ui.workbench.renderers.swt Change-Id: Idae8f17e88a994f7ab8c1089796128f6a73c35b4 Signed-off-by: Anton Leherbauer <anton.leherbauer@windriver.com>
2015-04-21Bug 432832 - [Dialogs] Apply button position is inconsistent in theI20150429-1030I20150429-0800I20150428-2000I20150428-0800I20150428-0100I20150427-2000I20150427-0800I20150426-2000I20150422-1000Robert Roth1-7/+9
Debug Configurations and Project Properties dialogs Moved the Apply button to the right side to be consistent with PreferencesPages, which put the Apply button in the buttonbar as the last item. Change-Id: I8fa8819cf887bd4935d836bf67ea2b3af08ac90e Signed-off-by: Robert Roth <robert.roth.off@gmail.com>
2015-04-17Bug 462996: Enable units tests to run on GerritI20150421-0800Markus Keller6-65/+43
- removed layer-breaking reference from debug.tests to JDT launch configuration - added required bundle org.eclipse.ui.externaltools Change-Id: Ia3e486825f3913ca2faa3c551f1db10fe2dddc08
2015-04-16Bug 462996: Enable units tests to run on GerritMarkus Keller1-7/+3
2015-04-15Enable tests for TychoDani Megert1-0/+23
Signed-off-by: Dani Megert <Daniel_Megert@ch.ibm.com>
2015-04-15Bug 457969 - [console] Automatic scroll lock should unlock when userSarika Sinha1-0/+12
enters characters Change-Id: Ie48a335b09929351bd7b8b62434f92d6c23859a1
2015-04-15Bug 464602 - [Console] Console auto scrolls only after 2nd inputSarika Sinha1-1/+26
character Change-Id: I7a6cf9958fc07726ecf5def8b53853f7f1fa3ae3
2015-04-15Revert "Bug 457969 - [console] Automatic scroll lock should unlock when user ↵Dani Megert1-12/+0
enters characters" This reverts commit d8ab8f362c6572602b90c79635cb77a113b64d0c.
2015-04-15Bug 457969 - [console] Automatic scroll lock should unlock when userSarika Sinha1-0/+12
enters characters Change-Id: Ia35716db2a8635e0e1f0f2d9df0f942f61c222b9
2015-04-14Minor code cleanupI20150414-1400I20150414-0800Dani Megert1-15/+16
2015-04-14Bug 56062 - [source lookup] Duplicate source lookup should indicate fullSarika Sinha1-1/+13
location of duplicate Change-Id: I8751f503e5dda2d39412267f767b32021ce4b037
2015-04-10Bug 436062 - Restore order of Run/Debug popupMenus extensionsChristian Georgi1-266/+266
Commit 72950dab changed the order of popupMenus extensions for reasons unknown [1]. This order, however, is the exact reverse order of the corresponding menu items. Most prominently the Run As, Debug As, and Profile As items were mixed up in context menus since then. This patch restores the original order of all popupMenus from the bad commit's parent ebf98a16. [1] https://git.eclipse.org/c/platform/eclipse.platform.debug.git/commit/?id=72950dab366c048a5119c995ea591dbaba477803 Bug: 436062 Change-Id: I29b42a65a697d9d9c8b48d15af9dfe34a1ce6ba3 Signed-off-by: Christian Georgi <christian.georgi@sap.com>
2015-04-10Bug 462274: Invalid thread access from DebugUIPreferenceInitializerMarkus Keller1-17/+29
2015-03-31Bug 435255 - [Graphics] thread*.png icons look blurryI20150408-1100I20150407-0800I20150331-0800Lars Vogel3-0/+0
Change-Id: If5f4b4e3d87a3fb85866b6530cdfa77f18512e15 Signed-off-by: Lars Vogel <Lars.Vogel@vogella.com>
2015-03-30Bug 453266 - [Graphics] Luna icons: are they enabled or not? Lars Vogel6-0/+0
Change-Id: I3e04e1963b3b0b3421f3c2c5f355df64d652d40f Signed-off-by: Lars Vogel <Lars.Vogel@vogella.com>
2015-03-26Set try-with-resource diagnostic to warning.Dani Megert1-1/+1
2015-03-25Bug 460417 - Fix compiler problems from generified IAdaptable#getAdapterSarika Sinha3-8/+10
Change-Id: I16f0f58cc88c756865830cec4a923a11992270c6
2015-03-24Fixed bug 460417: Fix compiler problems from generified ↵Dani Megert1-13/+16
IAdaptable#getAdapter(..)
2015-03-24Fixed bug 460417: Fix compiler problems from generified ↵Dani Megert1-15/+21
IAdaptable#getAdapter(..)
2015-03-24Bug 327222 - [expr] Remove Selected Expressions button is enabled whenRobert Roth1-0/+8
Add new expression row is selected Only enable the remove expression action for expressions, and implicitly disable it for the add new expression placeholder. Change-Id: I1bd303d85fa7703435fce9f07166d51eb42ee3cf Change-Id: I1bd303d85fa7703435fce9f07166d51eb42ee3cf Signed-off-by: Robert Roth <robert.roth.off@gmail.com>
2015-03-24Improved JavadocDani Megert1-17/+18
2015-03-24Fixed bug 459517: [console] Auto-scroll lock should not affect the view stateSarika Sinha4-8/+51
2015-03-10fixed CHKPII problemI20150324-0800I20150320-0800I20150320-0030I20150319-1640I20150319-1430I20150318-2000I20150318-1300I20150318-0800I20150317-2000I20150317-1130I20150317-0800I20150316-2000I20150316-0800I20150315-2000I20150311-1300I20150310-0800Markus Keller1-1/+1
2015-03-05Bug 76936 - [console] Eclipse Console window does not handle \b, \f, andPhilippe Marschall1-1/+147
\r Change ConsoleDocument to process the text String to handle \b, \f, and \r. Updated change "\r\n" is no longer considered a sequence of control characters. Change-Id: I93f394a44fcdd891a6e139c7c055c67313187e0e Signed-off-by: Philippe Marschall <philippe.marschall@netcetera.ch>
2015-03-05Bug 461219 - Compile warnings in official buildI20150305-1200Sarika Sinha13-62/+34
Change-Id: I163982897460fb0618b8b69a14b09379337fabb6
2015-03-03Bug 461219 - Compile warnings in official buildI20150303-0800Sarika Sinha12-178/+127
Change-Id: I48f14fe5c9ee51a09ede0bc30380cb8e55b5ada2
2015-03-02Bug 461103 - build failure in N20150227-2000 related to ?maven tests?Sarika Sinha19-19/+19
Change-Id: I9f1028df065d20bb3e1cf25c30a122e1b7371687
2015-02-27Bug 461029 - Move Platform Debug project to 1.7 complianceSarika Sinha33-57/+67
Change-Id: Ie29a60a934f7696ad5d8da9513489c5a9b925216
2015-02-24Bug 459664 - InstructionPointerImageProvider throws CCE for nonI20150224-0800Richard Birenheide1-2/+8
InstructionPointerAnnotation Change-Id: Ib55ae4044285b4254cce1d2eded40bf9752b37d3 Signed-off-by: Richard Birenheide <richard.birenheide@sap.com>
2015-02-21Fixed bug 460417: Fix compiler problems from generified ↵Dani Megert6-17/+21
IAdaptable#getAdapter(..)
2015-02-20Fixed bug 460417: Fix compiler problems from generified ↵Dani Megert113-468/+592
IAdaptable#getAdapter(..)
2015-02-18Bug 360368: [key binding] Hot Key for Skip All BreakpointsMarkus Keller3-2/+11
2015-02-06Bug 459310: New API: DebugPlugin#splitArguments(String)I20150217-0800I20150210-0800Markus Keller1-1/+6
fixed incomplete Javadoc
2015-02-06Bug 459310: New API: DebugPlugin#splitArguments(String)Markus Keller2-14/+86
2015-01-16Revert "[nobug] update .gitignore for default output folders"I20150203-1300I20150203-0800I20150129-1830I20150128-2000I20150128-0900I20150127-2000I20150127-0900I20150126-2000I20150126-0930I20150126-0800I20150125-2000I20150120-0800I20150116-1000Markus Keller4-4/+0
This reverts commit 9fa473cbc4dcf2772e6d164ce860c2fcd96a7bdf. See bug 454097: EGit adds wrong .gitignore files/entries at project root
2015-01-15[nobug] update .gitignore for default output foldersMike Rennie4-0/+4
Change-Id: I2f031cbe2cd18479d1684c97911b4b45de738c0f

Back to the top