This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/commons-lang.git


    from 6540edfdc Use final
     new 3d3a3fe13 Depreacte AnnotationUtils 0-argument contructor
     new a7b728894 Depreacte ArchUtils 0-argument contructor
     new db6f3ed36 Depreacte ArrayUtils 0-argument contructor
     new c6f1bfeb1 Depreacte BooleanUtils 0-argument contructor
     new f6793211f Depreacte CharSequenceUtils 0-argument contructor
     new 6ec8bb1ed Depreacte CharSetUtils 0-argument contructor
     new ba5d35fca Depreacte CharUtils 0-argument contructor
     new 388251dd2 Depreacte ClassLoaderUtils 0-argument contructor
     new e628792ce Depreacte ClassPathUtils 0-argument contructor
     new b3ac2313d Depreacte ClassUtils 0-argument contructor
     new c18758215 Depreacte EnumUtils 0-argument contructor
     new 3bf280a4e Depreacte LocaleUtils 0-argument contructor
     new 8a0194a59 Depreacte ObjectUtils 0-argument contructor
     new 61a0ac008 Depreacte RandomStringUtils 0-argument contructor
     new e56f42ef8 Depreacte RandomUtils 0-argument contructor
     new ed5e04703 Depreacte RegExUtils 0-argument contructor
     new 08e19a412 Depreacte SerializationUtils 0-argument contructor
     new 0171ab9fd Depreacte StringEscapeUtils 0-argument contructor
     new 02a16cbda Depreacte StringUtils 0-argument contructor
     new 235a874ea Depreacte SystemProperties 0-argument contructor
     new e04b2bd94 Depreacte ThreadUtils 0-argument contructor
     new 32196a11a Depreacte LockingVisitors 0-argument contructor
     new a84d01307 Depreacte EventUtils 0-argument contructor
     new 3c0d417ab Normalize comment
     new e8d80db85 Depreacte Suppliers 0-argument contructor
     new f78472f8c Depreacte IEEE754rUtils 0-argument contructor
     new 655d40282 Depreacte NumberUtils 0-argument contructor
     new 4822446e9 Depreacte ConstructorUtils 0-argument contructor
     new 212d2ae35 Depreacte FieldUtils 0-argument contructor
     new 78e26b2ec Depreacte InheritanceUtils 0-argument contructor
     new 6c1cb8005 Depreacte MemberUtils 0-argument contructor
     new cf12cfe7d Depreacte MethodUtils 0-argument contructor
     new 8926ed1c6 Depreacte TypeUtils 0-argument contructor
     new 0ef9b755a Depreacte IntStreams 0-argument contructor
     new eaa563e6f Depreacte Streams 0-argument contructor
     new cbbf42c0a Depreacte DateFormatUtils 0-argument contructor
     new 21d0b562b Depreacte DateUtils 0-argument contructor
     new 91f4ed32d Depreacte DurationFormatUtils 0-argument contructor
     new a6cbd6596 Depreacte DurationUtils 0-argument contructor
     new 5f6a06508 Revert "Depreacte MemberUtils 0-argument contructor"
     new efb9b44ac Document deprecations

The 41 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 src/changes/changes.xml                            | 46 ++++++++++++++++++++--
 .../org/apache/commons/lang3/AnnotationUtils.java  |  3 ++
 .../java/org/apache/commons/lang3/ArchUtils.java   | 10 +++++
 .../java/org/apache/commons/lang3/ArrayUtils.java  |  4 ++
 .../org/apache/commons/lang3/BooleanUtils.java     |  4 ++
 .../apache/commons/lang3/CharSequenceUtils.java    |  4 ++
 .../org/apache/commons/lang3/CharSetUtils.java     |  3 ++
 .../java/org/apache/commons/lang3/CharUtils.java   |  4 ++
 .../org/apache/commons/lang3/ClassLoaderUtils.java | 10 +++++
 .../org/apache/commons/lang3/ClassPathUtils.java   |  4 ++
 .../java/org/apache/commons/lang3/ClassUtils.java  |  4 ++
 .../java/org/apache/commons/lang3/EnumUtils.java   |  4 ++
 .../java/org/apache/commons/lang3/LocaleUtils.java |  4 ++
 .../java/org/apache/commons/lang3/ObjectUtils.java |  4 ++
 .../apache/commons/lang3/RandomStringUtils.java    |  4 ++
 .../java/org/apache/commons/lang3/RandomUtils.java |  4 ++
 .../java/org/apache/commons/lang3/RegExUtils.java  |  9 +++++
 .../apache/commons/lang3/SerializationUtils.java   |  4 ++
 .../apache/commons/lang3/StringEscapeUtils.java    |  4 ++
 .../java/org/apache/commons/lang3/StringUtils.java |  4 ++
 .../org/apache/commons/lang3/SystemProperties.java | 10 +++++
 .../java/org/apache/commons/lang3/ThreadUtils.java |  8 ++--
 .../lang3/concurrent/locks/LockingVisitors.java    |  9 +++++
 .../org/apache/commons/lang3/event/EventUtils.java | 10 +++++
 .../commons/lang3/exception/ExceptionUtils.java    |  3 +-
 .../apache/commons/lang3/function/Suppliers.java   |  9 +++++
 .../apache/commons/lang3/math/IEEE754rUtils.java   |  9 +++++
 .../org/apache/commons/lang3/math/NumberUtils.java |  4 ++
 .../commons/lang3/reflect/ConstructorUtils.java    |  4 ++
 .../apache/commons/lang3/reflect/FieldUtils.java   |  4 ++
 .../commons/lang3/reflect/InheritanceUtils.java    |  4 ++
 .../apache/commons/lang3/reflect/MethodUtils.java  |  4 ++
 .../apache/commons/lang3/reflect/TypeUtils.java    |  4 ++
 .../apache/commons/lang3/stream/IntStreams.java    |  9 +++++
 .../org/apache/commons/lang3/stream/Streams.java   | 10 +++++
 .../apache/commons/lang3/time/DateFormatUtils.java |  4 ++
 .../org/apache/commons/lang3/time/DateUtils.java   |  4 ++
 .../commons/lang3/time/DurationFormatUtils.java    |  4 ++
 .../apache/commons/lang3/time/DurationUtils.java   |  9 +++++
 39 files changed, 251 insertions(+), 8 deletions(-)

Reply via email to