Skip to main content
aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
2016-04-05Bug 489702 - Replace new PrimitiveWrapper() with .valueOf()Alex Blewitt1-2/+2
The primitive wrapper classes (Byte, Short, Character, Integer, Long) all have a constructor that takes a String (or primitive) value and return a new instance wrapping that type. They also have a valueOf method which does the same thing, but without creating a new object instance. Replace calls to the constructor and in-line calls where the object creation doesn't escape (for example, new Integer().intValue() or equivalent). Change-Id: I70310f46c085879b6efa28740186426de59c81b5 Signed-off-by: Alex Blewitt <alex.blewitt@gmail.com>
2014-09-08Bug 441790 - AnnotationValue.toString is creating incorrect andHarry Terkelsen2-63/+75
truncated text that cannot be used in source code Change-Id: I721e35c3d749d4c5d18eafd0e22164e5dcd9afa6 Signed-off-by: Harry Terkelsen <het@google.com>
2014-08-21Bug 441790 - AnnotationValue.toString is creating incorrect andHarry Terkelsen5-39/+193
truncated text that cannot be used in source code Change-Id: Icdbccc0d0ca80a862f8b4b17c67c999492333478 Signed-off-by: Harry Terkelsen <het@google.com>
2014-03-11Fix for bug 428468 - Removing JCP disclaimer and updating @since tagsJayaprakash Arthanareeswaran1-4/+0
2014-02-12Bug 427922 - [1.8] MirrorDeclarationTests.testMirrorDeclaration() isJayaprakash Arthanareeswaran1-8/+11
failing in BETA_JAVA8
2014-01-28Bug 416912: Extract TestSuite out of nested jarMickael Istria84-0/+4790
* Move Tests and TestSuite out of nested jar * Refactored source and bin folders for better sepration of test classes and test resource code (creating nested jars) Signed-off-by: Mickael Istria <mistria@redhat.com> Change-Id: I99cc807aaac88d8a0762eb3d8572311d5d968e2b

    Back to the top