[root]/src/java/org/apache/commons/lang/exception
Author | Changes | Lines of Code | Lines per Change |
---|---|---|---|
Totals | 178 (100.0%) | 4318 (100.0%) | 24.2 |
bayard | 38 (21.3%) | 1545 (35.8%) | 40.6 |
scolebourne | 33 (18.5%) | 1010 (23.4%) | 30.6 |
dlr | 33 (18.5%) | 797 (18.5%) | 24.1 |
stevencaswell | 14 (7.9%) | 410 (9.5%) | 29.2 |
ggregory | 45 (25.3%) | 401 (9.3%) | 8.9 |
dmitri | 1 (0.6%) | 129 (3.0%) | 129.0 |
psteitz | 5 (2.8%) | 17 (0.4%) | 3.4 |
sullis | 2 (1.1%) | 7 (0.2%) | 3.5 |
dirkv | 7 (3.9%) | 2 (0.0%) | 0.2 |
A feeble attempt at a (personal) anti-spam measure.
[ in jarkarta/commons/lang/src/ ]
* test/org/apache/commons/lang/exception/NestableDelegateTestCase.java
* test/org/apache/commons/lang/exception/ExceptionUtilsTestCase.java
* test/org/apache/commons/lang/StringUtilsTest.java
* java/org/apache/commons/lang/exception/ExceptionUtils.java
* java/org/apache/commons/lang/exception/NestableRuntimeException.java
* java/org/apache/commons/lang/exception/NestableError.java
* java/org/apache/commons/lang/exception/NestableDelegate.java
* java/org/apache/commons/lang/exception/NestableException.java
* java/org/apache/commons/lang/exception/Nestable.java
* java/org/apache/commons/lang/ObjectUtils.java
* java/org/apache/commons/lang/StringUtils.java
* java/org/apache/commons/lang/SerializationUtils.java
Remove my email addresses.
6 lines of code changed in:
Statement unnecessarily nested within else clause. The corresponding then clause does not complete normally.
3 lines of code changed in:
Fixing the ASF copyright and placing it in the NOTICE file
42 lines of code changed in:
Change "Copyright ....-2005" to "Copyright ....-2006"
6 lines of code changed in:
Javadoc comments for serialVersionUID.
20 lines of code changed in:
Adds missing serialVersionUID to Serializable classes.
A note from http://wiki.eclipse.org/index.php/FAQ_Why_does_the_Eclipse_compiler_create_a_different_serialVersionUID_from_javac%3F:
If you don’t explicitly define a serialVersionUID, the language requires that the VM generate one, using some function of all field and method names in the class. The problem is, the compiler generates some synthetic methods that you never see in your source file, and there is no clear specification for how these synthetic method names are generated. Any two compilers are likely to generate different method names, and so the serialVersionUID will be different. Bottom line: Always define the serialVersionUID explicitly in your source files.
8 lines of code changed in:
Fix infinite loops leading to OutOfMemory with circular cause chain
bug 37038
48 lines of code changed in:
New ExceptionUtils methods getMessage/getRootCauseMessage
38 lines of code changed in:
Replace LinkedList with more efficient ArrayList
2 lines of code changed in:
Change method ordering to group getStackTrace/getStackFrames
20 lines of code changed in:
Javadoc changes, with better description of trace methods
81 lines of code changed in:
http://issues.apache.org/bugzilla/show_bug.cgi?id=37574
[lang] [PATCH] new ExceptionUtils.setCause() method
107 lines of code changed in:
Slightly increments the test coverage for NestableDelegate. Includes a rework of the getMessage(String) method. Courtesy of Nathan Beyer [nbeyer@kc.rr.com].
30 lines of code changed in:
applied javadoc cleanup patch from http://issues.apache.org/bugzilla/show_bug.cgi?id=35676 (did not apply the VariableFormatter javadoc path since this class is still being worked)
1 lines of code changed in:
removed empty statement from catch block that takes no action, using comment only to denote no action;
added super to empty constructors
14 lines of code changed in:
corrected style issues (mostly empty blocks and missing javadocs)
133 lines of code changed in:
Updated copyright statements for 2005.
7 lines of code changed in:
Removed extra C style parens in return statements (as discussed on commons-dev).
2 lines of code changed in:
svn:keywords correction
2 lines of code changed in:
Fixes http://issues.apache.org/bugzilla/show_bug.cgi?id=33737.
[lang] ExceptionUtils.addCauseMethodName(String) does not check for duplicates.
Fix adds:
ExceptionUtils.removeCauseMethodName(String)
ExceptionUtils.isCauseMethodName(String)
53 lines of code changed in:
(69 more)