Skip to main content
aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
2021-07-21Use JDT static inner class clean up for platform.debug internal packagesY20210810-0820Y20210810-0500Y20210805-0800Y20210804-1030Y20210730-0530Y20210729-0800Y20210727-0800Y20210722-0800I20210811-1800I20210810-1800I20210809-1800I20210808-1800I20210807-1800I20210806-1800I20210805-1800I20210804-1800I20210804-0930I20210730-1800I20210729-1800I20210729-0050I20210728-1800I20210727-1800I20210726-1800I20210725-1800I20210724-1800I20210723-1800I20210722-1800I20210721-1800Lars Vogel2-2/+2
This ticket uses and tests the "Use static inner class" cleanup feature: - It reviews the feature - It reduces the memory consumption as it avoids the pointer to the outer class Example: Before: public class Outer { public class InnerClass { int i; public boolean anotherMethod() { return true; } } } After: public class Outer { public static class InnerClass { int i; public boolean anotherMethod() { return true; } } } Change-Id: Id13e31a83bc9a0740a17b1d409aebc613bcbdb7f Signed-off-by: Lars Vogel <Lars.Vogel@vogella.com> Reviewed-on: https://git.eclipse.org/r/c/platform/eclipse.platform.debug/+/180223 Tested-by: Platform Bot <platform-bot@eclipse.org> Reviewed-by: Alexander Kurtakov <akurtako@redhat.com>
2021-07-21[cleanup] Combine nested 'if' within 'else' block to 'else if'Karsten Thoms2-9/+5
Cleanup performed on bundles - org.eclipse.core.variables - org.eclipse.ui.console - org.eclipse.ui.externaltools - org.eclipse.debug.tests - org.eclipse.debug.examples.ui Change-Id: I4751614c0b8598381be75f8a36332614f4d365b8 Signed-off-by: Karsten Thoms <karsten.thoms@karakun.com> Reviewed-on: https://git.eclipse.org/r/c/platform/eclipse.platform.debug/+/172237 Tested-by: Platform Bot <platform-bot@eclipse.org> Reviewed-by: Alexander Kurtakov <akurtako@redhat.com>
2020-01-13Bug 559097 - Compile warnings in I20200113-0130Y20200114-0045I20200113-1800Paul Pazderski1-0/+1
Change-Id: I9dd25d7fe0d02a13f9cd3466756ada5a1b8a901f Signed-off-by: Paul Pazderski <paul-eclipse@ppazderski.de>
2019-10-25Bug 552423 - Replace usage of deprecated AbstractUIPlugin#getWorkbenchI20191103-1800I20191102-1800I20191101-1800I20191101-0300I20191031-1800I20191031-1325I20191030-1800I20191030-0010I20191029-1800I20191028-1800I20191027-1800I20191026-1800I20191025-1805Karsten Thoms1-1/+2
Change-Id: I3bc803f894aa33e94ed53789789148362d4c2a4b Signed-off-by: Karsten Thoms <karsten.thoms@itemis.de>
2019-09-16Use jdk 5 for-each loop (Part 3)Carsten Hammer1-2/+1
Replace simple uses of Iterator with a corresponding for-each loop. Also add missing braces on loops as necessary. Change-Id: I143bc5e03ef6f52a8b80897d61d20b3619c9dad8 Signed-off-by: Carsten Hammer <carsten.hammer@t-online.de>
2019-06-14Bug 547304 - [cleanup] Fix wrong space/tab indentationI20190616-1800I20190615-1800I20190614-1800Paul Pazderski25-852/+852
This change fixes space or mixed tab/space indentations in all Java files. This also includes two or three space indentations and even fix most stray single spaces in indentations. The change includes only whitespace formatting and no code changes. Change-Id: I95f385f1587b72776aee5d955b66e82539dedc3c
2019-06-12String.indexOf can be replaced with String.containsI20190613-0210I20190612-1800I20190612-0115Carsten Hammer1-1/+1
Change-Id: Ia3ff4eebc3799a8c1b8f6bbcddd200d08e1d966b Signed-off-by: Carsten Hammer <carsten.hammer@t-online.de>
2019-03-20Remove useless non-javadoc see comments.Alexander Kurtakov38-412/+18
Handled by Override annotation. Change-Id: Icd0334c0b57bb3021693117877a9af5fcda571d7 Signed-off-by: Alexander Kurtakov <akurtako@redhat.com>
2018-08-21Bug 535802 - EPL-2.0 for platform.debug examplesLars Vogel63-189/+378
Commands used for this conversion: git checkout master git reset --hard origin/master git pull find . -type f ! -name "*.exsd" ! -name "org.eclipse.jdt.ui.prefs" -exec sed -i 's/Eclipse Public License v1.0/Eclipse Public License 2.0/g' {} + find . -type f ! -name "*.exsd" ! -name "org.eclipse.jdt.ui.prefs" -exec sed -i -E 's/([[:blank:]]*[^[:blank:]])*([[:blank:]]*)http:\/\/www.eclipse.org\/legal\/epl-v10.html/\1\2https:\/\/www.eclipse.org\/legal\/epl-2.0\/\ \1\ \1\2SPDX-License-Identifier: EPL-2.0/' {} + # Get rid of the All rights reserved find . -type f ! -name "*.exsd" ! -name "org.eclipse.jdt.ui.prefs" ! -name "pom.xml" -exec sed -i -E 's/([[:blank:]]*[^[:blank:]])*([[:blank:]]*)(All rights reserved. )/\1\n\1\2/' {} + Change-Id: I615256f41b17ed5f99020a17ccf37e0cc8a0f331
2018-05-03Use StringBuilder instead of StringBuffer in debug examplesLars Vogel3-5/+5
Change-Id: I638c69c33868c22b89d4212ceaa764f99d516380 Signed-off-by: Lars Vogel <Lars.Vogel@vogella.com>
2018-03-29Bug 533055 - Remove redundant type argumentsI20180403-2000I20180402-2000I20180401-2000I20180331-1500I20180330-2235I20180330-2000I20180329-2000Alexander Kurtakov9-67/+20
Change-Id: I6f62094af1b4ad2c679e78cc635641918f958fb4 Signed-off-by: Alexander Kurtakov <akurtako@redhat.com>
2017-09-08Bug 522027 - Remove trailing whitespace fromLars Vogel49-283/+283
org.eclipse.debug.examples.ui Change-Id: Ic480731879760c66cf4691a38940c7f134fd61b5 Signed-off-by: Lars Vogel <Lars.Vogel@vogella.com>
2015-03-05Bug 461219 - Compile warnings in official buildI20150305-1200Sarika Sinha1-9/+3
Change-Id: I163982897460fb0618b8b69a14b09379337fabb6
2015-02-20Fixed bug 460417: Fix compiler problems from generified ↵Dani Megert8-54/+64
IAdaptable#getAdapter(..)
2013-07-31Bug 352626 - Move platform debug to Java 1.6 BREEMike Rennie61-199/+418
2013-07-17Bug 409456 - Get rid of discouraged access warningsI20130730-0800I20130724-1600I20130723-0800I20130717-1600Mike Rennie1-5/+21
2013-07-16Bug 413095 - Clean up deprecation and code warningsMike Rennie33-166/+178
2012-10-16Bug 386673 - Show warning messages in launch configuration dialogv20121016-001855I20121016-0800Mohamed Hussein1-2/+9
2012-05-15Fix Copyrights.Pawel Piech3-3/+3
2012-03-09Bug 344023 - [var] Need a way to override Find action of Variablesv20120309-2311Pawel Piech3-1/+374
view and its derived classes Standardized action IDs used in variables views.
2011-07-06[nobug] remove Javadoc warnings and NLS manifest + plugin.xmlMichael Rennie1-2/+2
2010-10-21Bug 328295 - Launch button disabled after failed launchDarin Wright2-1/+93
2010-09-24Bug 326152 - [Memory View] new monitors added while Memory view is hidden or ↵Darin Wright1-0/+101
closed are not shown in the tree
2010-05-26copyright updateDarin Wright1-3/+3
2010-05-04 Bug 311207 - [examples] NPE terminating PDA debug targetMichael Rennie1-2/+4
2009-11-24 Bug 296007 - Follow-up to deprecated ↵Michael Rennie1-1/+1
ILaunchManager#generateUniqueLaunchConfigurationNameFrom(String)
2009-10-27Bug 293426 - Compiler warnings in I20091027-0100Darin Wright2-5/+2
2009-09-21Bug 286310 - Checkbox support for Flexible Hierachy viewDarin Wright9-13/+189
2009-09-11Bug 286256 - Request to move Restart icon to core debug frameworkPawel Piech2-0/+94
2009-01-16Bug 261400 - Port the PDA example debugger's virtual machine from Perl to JavaPawel Piech7-78/+96
2008-10-24Bug 229219 - Track "debugContext" with the window evaluation context.Pawel Piech7-170/+201
2008-09-25Bug 212316 - Allow multiple debuggers to create breakpoints using the same ↵Pawel Piech3-19/+278
editor.
2008-05-29*** empty log message ***Darin Wright2-6/+6
2008-03-11Added example step over handlerCurtis Windatt2-1/+53
2008-02-27extra columnsDarin Wright3-13/+44
2008-02-26Midi example - track content in variables viewDarin Wright5-0/+263
2008-02-20*** empty log message ***Darin Wright3-4/+10
2008-02-01clock slider/controlDarin Wright5-6/+161
2008-01-31add resource mappings and lanuch types to launch shortcutsDarin Wright2-0/+13
2008-01-31clock updateDarin Wright2-0/+68
2008-01-31install launch proxy in debug viewDarin Wright1-0/+7
2008-01-30Bug 217025 - Compiler warnings in I20080129-0800 (debug example ui)Darin Wright2-2/+10
2008-01-29Launch shortcut for MIDI filesDarin Wright3-0/+196
2008-01-28initial release of additional MIDI exampleDarin Wright17-1/+1087
2007-10-22unused local variableDarin Wright1-1/+1
2007-10-10fix for image registry path (plug-in name change)Darin Wright1-1/+1
2007-10-09release of original PDA code baseDarin Wright26-0/+2370

    Back to the top