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 functions the same as a return for function with a specified parameter, except it returns nothing, as there is nothing to return and control is passed back to the calling method.