This is my code. when I compile using bluej it highlights the last } and says missing return statement. I cant put void because it is a boolean. ANy ideas?
You just forgot to put
return jobsFinished;
after the end of the System.out.print line.
When you do, it should run and compile successfully, which I am sure of because I made the same mistake today :P