import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;
ExecutorService pool = new Executors.newFixedThreadPool(4);
... I get "cannot find a class or type named Executors.newFixedThreadPool." It finds ExecutorService, and it finds Executors, but it can't find newFixedThreadPool inside Executors. Google seems pretty sure that this class is in there. Any ideas?