Skip to main content
aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
2016-06-22Move the rest of the CDT plugins to java 8Marc Khouzam3-5/+5
This change was generated using the script: releng/scripts/ChangeJavaVersion.sh Change-Id: I2ad96dc682a5acb8529c3edec40de279c331b5a4
2016-04-25Bug 492230 - Replace buffer.append(a+b) callsAlex Blewitt1-1/+1
When using a `StringBuilder` or `StringBuffer` to create a string message, using implicit string concatenation inside an `.append()` call will create a nested StringBuilder for the purposes of creating the arguments, which will subsequently be converted to a String and then passed to the outer StringBuilder. Skip the creation of the intermediate object and String by simply replacing such calls with `buffer.append(a).append(b)`. Where values are compile time String constants, leave as is so that the javac compiler can perform compile-time String concatenation. Ensure that NEWLINE isn't appended in such a way since it is not a compile time constant `System.getProperty("line.separator")` Change-Id: I4126aefb2272f06b08332e004d7ea76b6f02cdba Signed-off-by: Alex Blewitt <alex.blewitt@gmail.com>
2016-04-22Bug 492200 - Replace StringBuffer with StringBuilderAlex Blewitt1-3/+3
There are many opportunities for replacing `StringBuffer` with `StringBuilder` provided that the type isn't visible from the public API and is used only in internal methods. Replace these where appropriate. Change-Id: Ic2f50c5b6f3c3a4eae301bb3b40fb6faed235f79 Signed-off-by: Alex Blewitt <alex.blewitt@gmail.com>
2016-04-16Bug 491825 - Remove primitive wrapper creationAlex Blewitt1-2/+2
Using `new Integer` and other wrapper types such as `new Character` results in potential extra heap utilisation as the values are not cached. The built-in `Integer.valueOf` will perform caching on numbers in the range -128..127 (at least) using a flyweight pattern. In addition, parsing `int` values can be done with `Integer.parseInt` which avoids object construction. Adjust tests such as `"true".equals(expr)` to `Boolean.parseBoolean(expr)`. Change-Id: I0408a5c69afc4ca6ede71acaf6cc4abd67538006 Signed-off-by: Alex Blewitt <alex.blewitt@gmail.com>
2016-01-18Incremented CDT features version to 9.0.0Marc Khouzam1-1/+1
This includes bumping the standalone debugger to 9.0.0 Change-Id: I55fae1cec995b5f6865a5b174c004ed1b76e9bea
2016-01-04Fix copyright of all CDT plugins using the copyright tool from platform.Marc Khouzam5-5/+5
This commit does not add missing copyrights, just updates the date on the existing ones. Change-Id: I646f5afd533a1fcc539bdf2e0686b22f406ecf65
2015-07-30Bug 473536 - [memory] Add a Find-Replace menu option to the memory viewAlvaro Sanchez-Leon1-1/+16
Change-Id: I0adfae1c9bf0b65408c9a8e6230d5be14b728650
2015-06-10Incremented CDT feature version to 8.8.0Marc Khouzam1-1/+1
Change-Id: Ib1189a08a5f0225fd676b682dc8a10477ad3acc5 Signed-off-by: Marc Khouzam <marc.khouzam@ericsson.com>
2015-05-05Incremented CDT feature version to 8.7.0Marc Khouzam1-1/+1
Change-Id: Ife0feaaa9263d2b7797e31d628250bd26caff1b5 Signed-off-by: Marc Khouzam <marc.khouzam@ericsson.com>
2015-03-25Move some leftover plugins from Java 5 to Java 7.Marc Khouzam3-5/+5
Signed-off-by: Marc Khouzam <marc.khouzam@ericsson.com>
2015-01-07Incremented CDT feature version to 8.6.0.Sergey Prigogin1-1/+1
Change-Id: Ic90c8e6a68d21e5b90ec3fac997da6a95a29bedf Signed-off-by: Sergey Prigogin <eclipse.sprigogin@gmail.com> Reviewed-on: https://git.eclipse.org/r/39066 Tested-by: Hudson CI
2014-07-22Inremented branding plugin version to 8.5Sergey Prigogin1-1/+1
2014-01-21Bumped up CDT version to 8.4.Sergey Prigogin1-1/+1
Change-Id: I1229344feaaed4a3551ceb7b1ef1410545048b55 Reviewed-on: https://git.eclipse.org/r/20908 Reviewed-by: Sergey Prigogin <eclipse.sprigogin@gmail.com> IP-Clean: Sergey Prigogin <eclipse.sprigogin@gmail.com> Tested-by: Sergey Prigogin <eclipse.sprigogin@gmail.com>
2013-08-27Fixed parent pom version to referenceAndrew Gvozdev1-1/+1
2013-08-12Bug 414687 - Adapt to generified API from platform DebugMarc-Andre Laperle1-4/+26
Change-Id: I487a20f3456597f7eddf8a7ce2e1d73ca2dfc423 Signed-off-by: Marc-Andre Laperle <marc-andre.laperle@ericsson.com> Reviewed-on: https://git.eclipse.org/r/15289 Reviewed-by: Michael Rennie <Michael_Rennie@ca.ibm.com> Reviewed-by: Marc Khouzam <marc.khouzam@ericsson.com>
2012-07-09Bug 382119mahmed1-5/+2
Create the Find/Replace dialog with the new memory block reference to fix RejectedExecutionException problem when find after re-launching project Change-Id: I1d9b2ec5ace5bbc4d82adb14075f613dbe7c5d57 Reviewed-on: https://git.eclipse.org/r/6323 Reviewed-by: Mikhail Khodjaiants <mikhailkhod@googlemail.com> IP-Clean: Mikhail Khodjaiants <mikhailkhod@googlemail.com> Tested-by: Mikhail Khodjaiants <mikhailkhod@googlemail.com>
2012-06-28Bumped up feature versions for Kepler.Sergey Prigogin1-1/+1
2012-05-22Bug 379968 : Memory find/replace does not account for target endian-nessRandy Rohrbach1-3/+28
2012-04-23Upgrade to Tycho 0.14.1Marc-Andre Laperle1-2/+1
2012-01-17Code cleanup, mostly about missing @OverrideMarc Khouzam4-4/+18
2011-10-20Version number changes missed in the previous commit.Sergey Prigogin1-1/+1
2011-10-20Updated parent feature version in pom.xml files.Sergey Prigogin1-1/+1
2011-09-22Update version numbers for Juno.Doug Schaefer2-2/+2
2011-09-20Bug 356901 - TVT/DVT3.7:TCT102: DAN: Truncation of "Case Insensitive"Chris Recoskie1-2/+5
2011-06-28Mavenizing CDT releng.Doug Schaefer1-0/+17
Also removed unsupported cdt.core fragments from the platform feature.
2010-11-16Fix JRE Runtime and compliance settingsAnton Leherbauer1-1/+11
2010-10-18Bug 326965 - Added Ctrl+F functionality to bring up the Find/Replace dialog. ↵Randy Rohrbach4-7/+92
Also fixed persistence issue with Context Sensitive entry.
2010-09-02Turned on detection of potential null pointer usage. Also, some plug-ins I ↵John Cortell2-2/+96
protected against future warnings a while back lacked protection on all three levels (compiler, PDE, API)
2010-07-30Bug 315020 - The Memory Browser Find/Replace logic prefetchs data outside ↵Randy Rohrbach2-133/+266
the specified memory range. Bug 321407 - "Case Insensitive" option is supposed to be disabled while the searching format is Hex/decimal/octal/binary. Bug 321408 - Setting "Direction-->Backward" of "Find/Replace Memory" dialog can not find memory address one by one in Memory view.
2010-06-18Updated classpath to specify 1.5 JRE. The lack of it was causing errors for ↵John Cortell1-1/+1
Mikhail (now that I've turning those warnings into errors). Not sure why I'm not seeing them. Investigating...
2010-06-18More changes to keep project warning-freeJohn Cortell1-0/+33
2010-05-20 Bug 313806 - Export all debug packages.Mikhail Khodjaiants1-0/+1
2010-05-06Make memory browser plugins warning-intolerantJohn Cortell1-0/+67
2009-10-26Just fix simple warnings. No functional changes.Randy Rohrbach1-1/+1
2009-10-19Bugzilla 292703Randy Rohrbach2-2/+12
2009-10-19Bugzilla 292660.Randy Rohrbach3-21/+22
2009-10-18Bugzilla defectsRandy Rohrbach2-3/+6
256775 283586 287540 290710 292059 292120 292293
2009-10-13Fixed generics warningJohn Cortell1-1/+1
2009-10-13No need to use internal Debug Platform utility method. We have an equivalent ↵John Cortell2-5/+6
in CDT.
2009-06-15fix for bug 280219 - 69 Java Bundles contain no BREEVivian Kong1-0/+1
2009-06-08fix for bug 279400Vivian Kong1-1/+2
2009-05-27update copyrightsVivian Kong2-0/+20
2009-05-27bug 277871 - Externalize strings in plugin.xml and MANIFEST.MF for memory ↵Vivian Kong3-6/+23
plugins
2009-03-14[268625] target Find/Replace & Import/Export actions to Memory BrowserTed Williams3-12/+34
2009-02-19DSDP-DD -> CDT, initial commit: set version fields to 1.2.0Ted Williams1-1/+1
2009-02-10Performed some cleanup to get rid of unneeded warnings.Randy Rohrbach3-8/+9
No functional change to the code. There is no specific bugzilla entry for this. Randy
2009-02-09Just removed a few comments that should have been taken out before I ↵Randy Rohrbach1-2/+0
reconciled before. This is just a continuation of the previous defect. Randy
2009-02-09[memory] DSDP-DD -> CDT initial commitTed Williams14-0/+1958

    Back to the top