src/share/classes/javax/swing/SwingWorker.java

Print this page

        

*** 402,411 **** --- 402,412 ---- * @param chunks intermediate results to process * * @see #process * */ + @SafeVarargs protected final void publish(V... chunks) { synchronized (this) { if (doProcess == null) { doProcess = new AccumulativeRunnable<V>() { @Override