private void displayResult() {
DeployLog.LOG.fine("Displaying the deploy result");
// If there are any warnings we display them in a popup dialog, otherwise we just show a message
// telling the user deploy was successful. While that dialog is showing we do the necessary
// post-deploy processing in the background:
ApplicationWorker w = Application.getWorker();
w.submitForParallel(new ApplicationWorker.SafeRunnable() {
@Override
public void run() {
DeployResultDisplayer.display(results, project);
}