Noel,Great work on your recent checkins - thanks! I just have a couple minor coding style comments:
- Don't include a space after a cast operator. - Do include spaces around mathematical operators (e.g. 1 + 2 vs. 1+2).- Try to structure your methods to use a single return statement, rather than returning from arbitrary points in the method. It makes it easier to follow the logic.
Thanks! Greg
