Adding a note on the deprecated DateUtils.add method
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@636654 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
19dfbd218e
commit
8b0bdce17e
|
@ -12,6 +12,7 @@ Commons Lang is a set of utility functions and reusable components that should b
|
||||||
|
|
||||||
INCOMPATIBLE CHANGES WITH VERSION 2.3:
|
INCOMPATIBLE CHANGES WITH VERSION 2.3:
|
||||||
|
|
||||||
|
- None
|
||||||
|
|
||||||
INCOMPATIBLE CHANGES WITH VERSION 2.2:
|
INCOMPATIBLE CHANGES WITH VERSION 2.2:
|
||||||
|
|
||||||
|
@ -41,6 +42,9 @@ DEPRECATIONS FROM 2.3 to 2.4:
|
||||||
- ObjectUtils.appendIdentityToString(StringBuffer, Object) - has very odd semantics, use
|
- ObjectUtils.appendIdentityToString(StringBuffer, Object) - has very odd semantics, use
|
||||||
ObjectUtils.identityToString(StringBuffer, Object) instead.
|
ObjectUtils.identityToString(StringBuffer, Object) instead.
|
||||||
|
|
||||||
|
- public static java.util.Date add(java.util.Date, int, int) - it is not intended for this
|
||||||
|
method to be public. Please let us know if you use this.
|
||||||
|
|
||||||
DEPRECATIONS FROM 2.2 to 2.3:
|
DEPRECATIONS FROM 2.2 to 2.3:
|
||||||
|
|
||||||
- None
|
- None
|
||||||
|
|
|
@ -34,6 +34,7 @@ Commons Lang is a set of utility functions and reusable components that should b
|
||||||
|
|
||||||
INCOMPATIBLE CHANGES WITH VERSION 2.3:
|
INCOMPATIBLE CHANGES WITH VERSION 2.3:
|
||||||
|
|
||||||
|
- None
|
||||||
|
|
||||||
INCOMPATIBLE CHANGES WITH VERSION 2.2:
|
INCOMPATIBLE CHANGES WITH VERSION 2.2:
|
||||||
|
|
||||||
|
@ -63,6 +64,9 @@ DEPRECATIONS FROM 2.3 to 2.4:
|
||||||
- ObjectUtils.appendIdentityToString(StringBuffer, Object) - has very odd semantics, use
|
- ObjectUtils.appendIdentityToString(StringBuffer, Object) - has very odd semantics, use
|
||||||
ObjectUtils.identityToString(StringBuffer, Object) instead.
|
ObjectUtils.identityToString(StringBuffer, Object) instead.
|
||||||
|
|
||||||
|
- public static java.util.Date add(java.util.Date, int, int) - it is not intended for this
|
||||||
|
method to be public. Please let us know if you use this.
|
||||||
|
|
||||||
DEPRECATIONS FROM 2.2 to 2.3:
|
DEPRECATIONS FROM 2.2 to 2.3:
|
||||||
|
|
||||||
- None
|
- None
|
||||||
|
|
Loading…
Reference in New Issue