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
It exits the function and returns nothing.
Something like return 1; would be incorrect since it returns integer 1.
return 1;