Javadoc only.
55 lines of code changed in:
Allow Java 1.5 to be used to build with Maven.
17 lines of code changed in:
Two items:
(1) Allow the Java 1.5 to be used to build by adding:
# Specifies the source version for the Java compiler.
# Corresponds to the source attribute for the ant javac task.
# Valid values are 1.3, 1.4, 1.5.
compile.source = 1.3
(2) Refactor the multiple use of the javac/target="1.1" into a build property:
# Generate class files for specific VM version (e.g., 1.1 or 1.2).
# Note that the default value depends on the JVM that is running Ant.
# In particular, if you use JDK 1.4+ the generated classes will not be usable
# for a 1.1 Java VM unless you explicitly set this attribute to the value 1.1
# (which is the default value for JDK 1.1 to 1.3).
compile.target = 1.1
18 lines of code changed in:
Add parse method that handles multiple patterns
bug 30674
78 lines of code changed in:
Fix unescape to handle invalid entities
bug 29149, from Dan Goldberg
25 lines of code changed in:
Document how to format a date
from bug 21663
15 lines of code changed in:
Remove dead code
1 lines of code changed in:
Add bug 30929
4 lines of code changed in:
Fix DateUtils.truncate oddity at the far end of the Date spectrum
bug 31395, from Marc Portier
31 lines of code changed in:
Improve example
12 lines of code changed in:
Add methods to compare dates and calendars in different ways
based on bug 26922
133 lines of code changed in:
First cut at release notes for 2.1
88 lines of code changed in:
Add since tags
4 lines of code changed in:
Javadoc
1 lines of code changed in:
Add initial version of StrBuilder, currently without any tests
1446 lines of code changed in:
Rework DurationFormatUtils to have clearer API based on two types of formatting
Fix millisecond formatting bug
428 lines of code changed in:
Fix test for changed exception message
2 lines of code changed in:
Remove commented out code that never went anywhere
1 lines of code changed in:
Update Javadoc to better describe the behaviour and use cases of the exceptions
120 lines of code changed in:
'enum' should not be used as an identifier, since it is a reserved keyword from source level 1.5.
4 lines of code changed in:
Add Date equivalent of isSameDay method
40 lines of code changed in:
Remove lastIndex(), which is better done as getLength() - 1
3 lines of code changed in:
Fix bug where add() didn't use array type
Remove unecessary calls to lastIndex() for performance
32 lines of code changed in:
Change behaviour of indexOf to match subclasses, with appropriate comments
bug 30929
125 lines of code changed in:
Add additional method to support subclass searching of exceptions in a chain
bug 30929
126 lines of code changed in:
Javadoc hashCode() more precisely.
4 lines of code changed in:
Javadoc
19 lines of code changed in:
Extra tests based on Javadoc
10 lines of code changed in:
Rename allElementsOfClass to allElementsOfType, and change to instanceof check
42 lines of code changed in:
Remove wrong Javadoc
2 lines of code changed in:
Add isTrue and isFalse methods
55 lines of code changed in:
- Added javadoc package.html
- Removed all "implements java.io.Serializable" since java.lang.Number already declares it.
- New Javadoc for equals(Object) methods to match Number subclasses, in particular to provide more details for Float and Double.
- equals(Object) methods now use /type/Value() calls instead of ".value" direct references (similar impl to Number subclasses).
337 lines of code changed in:
Add since tags for 2.1 and fix Javadoc
10 lines of code changed in:
Add since tags for 2.1
61 lines of code changed in:
Fix javadoc to refer to the correct entities
from knuti at ibm
3 lines of code changed in:
Rename Tokenizer to StrTokenizer and move to text subpackage
1652 lines of code changed in:
Javadoc
16 lines of code changed in:
CharacterEncoding renamed to CharEncoding
254 lines of code changed in:
Calendar.setTimeInMillis(long) is a JDK 1.4 method, so reverting to an older variant
4 lines of code changed in:
Minor format tweak, add some leading spaces to two lines. (One more time, without tabs in the two spots).
11 lines of code changed in:
Minor format tweak, add some leading spaces to two lines.
3 lines of code changed in:
Run mutable tests.
9 lines of code changed in:
Remove unnecessary type casts.
23 lines of code changed in: