I\'m looking at a path finding tutorial and I noticed a return statement inside a void method (class PathTest, line 126):
return
void
PathTest
The Java language specification says you can have return with no expression if your method returns void.