[root]/PZFileReader/src/main/java/net/sf/pzfilereader/xml
Author | Changes | Lines of Code | Lines per Change |
---|---|---|---|
Totals | 25 (100.0%) | 248 (100.0%) | 9.9 |
Paul Zepernick | 10 (40.0%) | 165 (66.5%) | 16.5 |
Benoit Xhenseval | 15 (60.0%) | 83 (33.5%) | 5.5 |
- Added check for null
18 lines of code changed in:
- converting xml map parser over to Reader
- Removed parse(File)
- Added parse(Reader)
23 lines of code changed in:
added SLF4J logging...
Benoit,
I will follow up with an email with some of the details of the logger.
It is pretty simplistic.
Paul
10 lines of code changed in:
findbug fixes
79 lines of code changed in:
put return in catch so it would no longer be empty
1 lines of code changed in:
General clean Up by Eclipse (cleanup, organise imports and format).
14 lines of code changed in:
Removed some throw Exception
Only non-runtime exceptions should be declared and never at the 'Exception' level, which is far too generic and forces every caller to deal with something which is 'unknonwn'
9 lines of code changed in:
added a better comment to getColumns()
3 lines of code changed in:
added default system type to get around JDOM parse error. More notes in task manager
7 lines of code changed in:
Some serious kicking...
1/ use a map for finding the column index; this makes the fetch of the first or last column consistent
2/ removed SOME of the substring which are causing dramatic performance degradation when once has a fair amount of columns.
3/ optimised some string manipulation code (getDelimiterOffset, lTrim, lTrimKeepTabs, removeChar
4/ I would suggest the creation of a suite of unit tests for all those methods.... Paul, do you want to take this on?
34 lines of code changed in:
javadoc package docs
24 lines of code changed in:
scoping and using PreparedStatement (always better).
11 lines of code changed in:
Reduce the scope of some variables that now can be declared 'final', this in turn helps the JVM to optimize the runtime code, as well as keeping the memory requirement to a minimum.
15 lines of code changed in:
Moved to net.sf.pzfilereader
0 lines of code changed in: