The following code gives me compile-time errors: missing return value and missing return statement, what value would I return for this Void Type
?
final SwingWorker<Void, Void> worker = new SwingWorker<Void, Void>() {
@Override
protected Void doInBackground() throws Exception {
// some code
if (something) {
return;
}
}
}