- added central Maven repository to POM (issue #183)
- fixed abortLogger assignment in AbstractDataStore constructor (issue #190)
- fixed ScalableList corner case bug (issue #195)
- removed references to extension manual in tutorial (issue #199)
- reviewed by stp, tjb
M sgs-server/src/test/java/com/sun/sgs/test/app/util/TestScalableList.java
- add tests for ListIterator corner cases
- a valid call to next (or previous) followed by an invalid call to next (or previous) should
allow for a valid call to set
M sgs-server/src/main/java/com/sun/sgs/impl/service/data/store/AbstractDataStore.java
- fixed abortLogger assignment in constructor
M sgs-server-dist/src/main/etc/CHANGELOG
- noted issues that were fixed
- also noted issue #174 which was fixed in a previous commit (r6317)
M sgs-tutorial-server-dist/src/main/doc/ServerAppTutorial.odt
M sgs-tutorial-server-dist/src/main/doc/ServerAppTutorial.pdf
- removed references to Project Darkstar Extension Manual
M sgs-server-api/src/main/java/com/sun/sgs/app/util/ScalableList.java
- fixed ListIterator corner cases
- a call to next or previous that throws NoSuchElementException should not prevent a previous call to
next or previous being used for a future call to set
M pom.xml
- included central Maven repository in POM so that it is searched first instead of last when locating artifacts