Wayne Holder

Results 5 issues of Wayne Holder

At this point, I've managed to update and rework quite a large section of the code. There's more work to be done, but I've run into an issue that I...

The init code for the `contractions` Map in the `static{}` block seems to omit one of the most common contractions in English, Specifically "`'t`" (as in can't, couldn't, didn't, doesn't,...

I've been slowly working my way through the code to try and get a feel for how it's organized and have noticed a few odd things that may be incomplete,...

enhancement

These two lines in `Skybox.java` have the back and front images reversed: ``` back.setImage(frontImg); front.setImage(backImg); ``` It should be: ``` back.setImage(backImg); front.setImage(frontImg); ``` Wayne

Perhaps you recognize my name. I have an idea for how this project might reach a wider audience. If interested, please contact me at: questions4wayne at gmail dot com Wayne...

question