September 2002 Commit Log

Number of Commits:
76
Number of Active Developers:
4
bayard 2002-09-30 00:50

Removed an unused piece of code.

1 lines of code changed in:

bayard 2002-09-30 00:47

Javadoc typo fixed. equals was claiming String type.

2 lines of code changed in:

bayard 2002-09-29 08:26

Ensured that the builder has a default style at all times by setting it

initially. [the setDefaultStyle method makes sur eit can't be set to null].



Hopefully this is an okay thing to do, it was breaking Tests.

2 lines of code changed in:

bayard 2002-09-29 08:20

Removed unused imports.

Submitted by: Fredrik Westermarck <fredrik.westermarck@mdh.se>

5 lines of code changed in:

bayard 2002-09-29 07:24

Added latest issues from Steve Downey's emails.

4 lines of code changed in:

bayard 2002-09-29 07:15

Fixed to allow a charset of "-" to work correctly.

Submitted by: Steve Downey

2 lines of code changed in:

bayard 2002-09-29 07:13

Test showing that new String {"-"} does not work in CharSetUtils as a charset.

Submitted by: Steve Downey

3 lines of code changed in:

scolebourne 2002-09-28 10:49

Javadoc fixes and enhancements

4 lines of code changed in:

scolebourne 2002-09-28 10:44

Javadoc fixes and enhancements

22 lines of code changed in:

scolebourne 2002-09-28 10:34

Javadoc fixes and enhancements from Steve Downey

26 lines of code changed in:

stevencaswell 2002-09-27 19:24

Added StringUtils defaultString variation TODO

3 lines of code changed in:

bayard 2002-09-27 06:08

Changed the deleteWhitespace method to delete according to Character.isWhitespce

Renamed the existing deleteWhitespace functionality to deleteSpaces.

This is in accordance with Character.isSpace.



Submitted by: Steve Downey's idea

40 lines of code changed in:

bayard 2002-09-27 05:53

Added a patch with many improvements to the javadoc from Steve Downey.



Submitted by: Steve Downey

47 lines of code changed in:

scolebourne 2002-09-25 10:29

Correct the enum release notes

2 lines of code changed in:

dlr 2002-09-25 06:00

Reverting last commit back to CVS rev 1.3. I would prefer to see the "dist" build target create bundled archives.

1 lines of code changed in:

dlr 2002-09-25 05:57

All build-generated content should reside under a single directory for easy cleaning.

1 lines of code changed in:

dlr 2002-09-25 05:55

Ignore the generated target/ directory.

0 lines of code changed in:

dlr 2002-09-25 05:54

Updated the component.version property for [lang] version 1.0-rc1.

1 lines of code changed in:

dlr 2002-09-25 05:50

Corrected semantics of ExceptionWithoutCause broken in CVS rev 1.3.

The point of the ExceptionWithoutCause is to test for false-positive

nested exception method signature matches. Documented this in the

header JavaDoc for both the ExceptionWithCause and

ExceptionWithoutCause classes, and changed the nested exception method

name of the latter from getCause() to getTargetException() to avoid

conflicts with getCause() method of JDK 1.4's Exception class (which

returns Throwable).

11 lines of code changed in:

bayard 2002-09-25 03:30

Changed my name from 'Bayard'. Yeah yeah.

9 lines of code changed in:

bayard 2002-09-25 01:33

Release notes for Lang 1.0.

128 lines of code changed in:

scolebourne 2002-09-22 09:18

Checkstyle fixes

63 lines of code changed in:

scolebourne 2002-09-21 08:11

Added more TODOs for CharUtils and StringBuffer

5 lines of code changed in:

bayard 2002-09-21 05:16

Created a standard set of checkstyle properties.

It's still noticing RuntimeExceptions, so that part isn't working yet.

1 lines of code changed in:

bayard 2002-09-21 05:02

Removed unused import statements.

1 lines of code changed in:

bayard 2002-09-21 04:22

Enhanced documentation files. First take.

55 lines of code changed in:

  • src/java/org/apache/commons/lang: package.html (new 6)
  • src/java/org/apache/commons/lang/builder: package.html (new 6)
  • src/java/org/apache/commons/lang/enum: package.html (new 34)
  • src/java/org/apache/commons/lang/exception: package.html (new 9)
bayard 2002-09-21 04:16

Added an exclude for Test classes beginning with 'Abstract'

4 lines of code changed in:

scolebourne 2002-09-19 19:45

Superclass now specifies protected getters and setters

37 lines of code changed in:

scolebourne 2002-09-19 19:44

Added javadoc

Added protected getters and setters for fields

Made fields private

441 lines of code changed in:

scolebourne 2002-09-19 19:42

Added some javadoc

4 lines of code changed in:

bayard 2002-09-19 07:02

added another test and updated STATUS to confirm containsOnly is done

6 lines of code changed in:

bayard 2002-09-19 06:58

Patch from Fredrik Westermarck <fredrik.westermarck@mdh.se> that adds the

containsOnly method. I added a couple more unit tests and modified the code

slightly.

58 lines of code changed in:

scolebourne 2002-09-18 20:12

Remove Null placeholder singleton todo

1 lines of code changed in:

scolebourne 2002-09-18 20:12

Add test for Null placeholder singleton

8 lines of code changed in:

scolebourne 2002-09-18 20:11

Add Null placeholder singleton

42 lines of code changed in:

scolebourne 2002-09-18 19:55

Added explicit public constructor

10 lines of code changed in:

bayard 2002-09-18 19:53

And now i'll add a comment about the public constructor.

5 lines of code changed in:

bayard 2002-09-18 19:52

Been meaning to do this. Made the constructor public in line with StringUtils.

scolebourne thankfully reminded me by doing NumberUtils :)

2 lines of code changed in:

scolebourne 2002-09-18 19:50

Removed identityToString todo

Removed issues

Added ArrayUtils todo

3 lines of code changed in:

scolebourne 2002-09-18 19:49

Test identityToString

Reformat for Suns coding standards

33 lines of code changed in:

scolebourne 2002-09-18 19:49

Add identityToString

Make constructor public in line with NumberUtils and StringUtils

Javadoc tidy

37 lines of code changed in:

stevencaswell 2002-09-18 15:51

added printStackTrace(PrintStream) method to NonThrowableNestable static class to satisfy Nestable interface;

removed deprecated getLength() and indexOfThrowable(int,Class) methods from static test classes;

revised javadocs fof static test classes to be more accurate in describing method behavior

141 lines of code changed in:

stevencaswell 2002-09-18 15:47

change getCause() ExceptionWithoutCause static class:

- changed signature to match getCause method in JDK 1.4 Exception

- changed method to return null

3 lines of code changed in:

scolebourne 2002-09-17 22:10

Update for checked in ToStringBuilder

2 lines of code changed in:

scolebourne 2002-09-17 22:09

Tidy file layout

4 lines of code changed in:

scolebourne 2002-09-17 22:07

Tests for initial checkin of ToStringBuilder and assistants

1188 lines of code changed in:

scolebourne 2002-09-17 22:07

Initial checkin of ToStringBuilder and assistants

2782 lines of code changed in:

scolebourne 2002-09-17 22:06

Exclude static fields from reflection based builder

75 lines of code changed in:

bayard 2002-09-17 10:58

Need an unescape.

2 lines of code changed in:

bayard 2002-09-17 10:30

Added some StringUtils todos.

4 lines of code changed in:

bayard 2002-09-17 09:33

Removed the @see ExtensibleEnum as there is no such class in the

system currently. It was giving a warning in the building of javadoc.

1 lines of code changed in:

scolebourne 2002-09-15 10:29

Updated status as builder package evolves

5 lines of code changed in:

scolebourne 2002-09-15 10:28

Added Steve Downey as a contributor

9 lines of code changed in:

scolebourne 2002-09-15 10:27

Add tests for new min, max and compare methods

205 lines of code changed in:

scolebourne 2002-09-15 10:27

Test CompareToBuilder

959 lines of code changed in:

scolebourne 2002-09-15 10:26

Added compare methods for double and float

Added min/max methods for long

Added public constructor with comment

184 lines of code changed in:

scolebourne 2002-09-15 10:25

Add CompareToBuilder for building compareTo methods

633 lines of code changed in:

scolebourne 2002-09-12 22:15

Update for new builder subpackage

2 lines of code changed in:

scolebourne 2002-09-12 22:01

New builder subpackage created

93 lines of code changed in:

scolebourne 2002-09-12 22:01

Add extra tests for reflection and multi dimensional arrays

422 lines of code changed in:

scolebourne 2002-09-12 22:00

Added code from Steve Downey,

with some formatting changes and extra tests

680 lines of code changed in:

scolebourne 2002-09-12 22:00

Added code from Steve Downey,

with some formatting changes and minor bug fixes

621 lines of code changed in:

scolebourne 2002-09-12 21:59

Moved from superpackage

570 lines of code changed in:

scolebourne 2002-09-12 21:58

Moved to builder subpackage

0 lines of code changed in:

scolebourne 2002-09-12 21:58

Update testing for ant

14 lines of code changed in:

stevencaswell 2002-09-12 01:20

added printStackTrace(PrintStream) for consistency with printStackTrace(PrintWriter)

11 lines of code changed in:

  • src/java/org/apache/commons/lang/exception: Nestable.java (+11 -1)
stevencaswell 2002-09-11 19:40

corrected name of test case class

corrected name of second tester class in getTester2 method

3 lines of code changed in:

stevencaswell 2002-09-11 19:40

corrected name of test case class

2 lines of code changed in:

stevencaswell 2002-09-11 19:40

corrected a couple of refactoring items missed:

- in testGetThrowableI, replaced construction of explicit class instance with getThrowable abstract method

- in testPrintPartialStackTrace, replaced class name in startsWith assert from explcit class name to class from getNestable abstract method

- in testPrintStackTrace, replaced class name in startsWith assert from explicit class name to class name from getThrowableClass abstract method

- in testPrintStackTrace, replaced class name in indexOf assert from explicit class name to class name from getNestable abstract method

removed extranous commented code

11 lines of code changed in:

stevencaswell 2002-09-11 19:04

updated javadocs

145 lines of code changed in:

stevencaswell 2002-09-11 18:17

added NestableErrorTestCase to test suite

1 lines of code changed in:

stevencaswell 2002-09-11 18:17

created

289 lines of code changed in:

stevencaswell 2002-09-11 18:16

refactored to share funcrionality from AbstractNestableTestCase

99 lines of code changed in:

stevencaswell 2002-09-11 18:16

created by refactoring NestableException revision 1.3

701 lines of code changed in:

scolebourne 2002-09-08 15:58

Updated my personal details

2 lines of code changed in:

scolebourne 2002-09-06 22:43

Removed to sandbox ready for 1.0 release

0 lines of code changed in:

August 2002 »

Generated by StatSVN 0.3.2-SNAPSHOT