Fixed compile warnings
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/importexport/launchconfigurations/ExportLaunchConfigurationsWizardPage.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/importexport/launchconfigurations/ExportLaunchConfigurationsWizardPage.java
index 0ac2fea..b4f0079 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/importexport/launchconfigurations/ExportLaunchConfigurationsWizardPage.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/importexport/launchconfigurations/ExportLaunchConfigurationsWizardPage.java
@@ -20,6 +20,7 @@
 
 import org.eclipse.core.filesystem.EFS;
 import org.eclipse.core.filesystem.IFileStore;
+
 import org.eclipse.core.runtime.CoreException;
 import org.eclipse.core.runtime.IPath;
 import org.eclipse.core.runtime.IProgressMonitor;
@@ -39,6 +40,7 @@
 import org.eclipse.debug.internal.ui.IInternalDebugUIConstants;
 import org.eclipse.debug.internal.ui.SWTFactory;
 import org.eclipse.debug.internal.ui.launchConfigurations.LaunchCategoryFilter;
+
 import org.eclipse.debug.ui.DebugUITools;
 import org.eclipse.jface.dialogs.IDialogSettings;
 import org.eclipse.jface.dialogs.MessageDialog;
@@ -322,15 +324,13 @@
 		UIJob exportjob = new UIJob(getContainer().getShell().getDisplay(), WizardMessages.ExportLaunchConfigurationsWizard_0) {
 			@Override
 			public IStatus runInUIThread(IProgressMonitor monitor) {
-				if(monitor == null) {
-					monitor = new NullProgressMonitor();
-				}
+				IProgressMonitor progressMonitor = monitor != null ? monitor : new NullProgressMonitor();
 				IPath destpath = new Path(dpath);
 				File destfolder = destpath.toFile();
 				if(!destfolder.exists()) {
 					destfolder.mkdirs();
 				}
-				monitor.beginTask(WizardMessages.ExportLaunchConfigurationsWizardPage_10, configs.length);
+				progressMonitor.beginTask(WizardMessages.ExportLaunchConfigurationsWizardPage_10, configs.length);
 				try {
 					List<IStatus> errors = null;
 					IFileStore file = null;
@@ -338,7 +338,7 @@
 					boolean owall = false, nowall = false;
 					MessageDialog dialog = null;
 					for(int i = 0; i < configs.length; i++) {
-						if(monitor.isCanceled()) {
+						if (progressMonitor.isCanceled()) {
 							return Status.CANCEL_STATUS;
 						}
 						if(configs[i] instanceof ILaunchConfiguration) {
@@ -349,19 +349,19 @@
 									if (errors == null) {
 										errors = new ArrayList<IStatus>(configs.length);
 									}
-									errors.add(new Status(IStatus.ERROR, DebugUIPlugin.getUniqueIdentifier(),
- MessageFormat.format(WizardMessages.ExportLaunchConfigurationsWizardPage_19, new Object[] { launchConfig.getName() }), null));
+									errors.add(new Status(IStatus.ERROR, DebugUIPlugin.getUniqueIdentifier(), MessageFormat.format(WizardMessages.ExportLaunchConfigurationsWizardPage_19, new Object[] { launchConfig.getName() }), null));
 								} else {
 									newfile = new File(destpath.append(file.getName()).toOSString());
 									if(newfile.exists() & !overwrite) {
 										if(nowall) {
 											continue;
 										}
-										dialog = new MessageDialog(DebugUIPlugin.getShell(), 
-												WizardMessages.ExportLaunchConfigurationsWizardPage_11, 
-												null, 
- MessageFormat.format(WizardMessages.ExportLaunchConfigurationsWizardPage_12, new Object[] { file.getName() }),
-												MessageDialog.QUESTION, new String[] {WizardMessages.ExportLaunchConfigurationsWizardPage_13, WizardMessages.ExportLaunchConfigurationsWizardPage_14, WizardMessages.ExportLaunchConfigurationsWizardPage_15, WizardMessages.ExportLaunchConfigurationsWizardPage_16, WizardMessages.ExportLaunchConfigurationsWizardPage_17}, 0);
+										dialog = new MessageDialog(DebugUIPlugin.getShell(), WizardMessages.ExportLaunchConfigurationsWizardPage_11, null, MessageFormat.format(WizardMessages.ExportLaunchConfigurationsWizardPage_12, new Object[] { file.getName() }), MessageDialog.QUESTION, new String[] {
+												WizardMessages.ExportLaunchConfigurationsWizardPage_13,
+												WizardMessages.ExportLaunchConfigurationsWizardPage_14,
+												WizardMessages.ExportLaunchConfigurationsWizardPage_15,
+												WizardMessages.ExportLaunchConfigurationsWizardPage_16,
+												WizardMessages.ExportLaunchConfigurationsWizardPage_17 }, 0);
 										if(!owall) {
 											int ret = dialog.open();
 											switch(ret) {
@@ -379,7 +379,7 @@
 													break;
 												}
 												case 4: {
-													monitor.setCanceled(true);
+													progressMonitor.setCanceled(true);
 													break;
 												}
 												default:
@@ -409,8 +409,8 @@
 								errors.add(e.getStatus());
 							}
 						}
-						if(!monitor.isCanceled()) {
-							monitor.worked(1);
+						if (!progressMonitor.isCanceled()) {
+							progressMonitor.worked(1);
 						}
 					}
 					if (errors == null || errors.isEmpty()) {
@@ -426,7 +426,7 @@
 					}
 				}
 				finally {
-					monitor.done();
+					progressMonitor.done();
 				}
 			}
 		};
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/importexport/launchconfigurations/ImportLaunchConfigurationsWizardPage.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/importexport/launchconfigurations/ImportLaunchConfigurationsWizardPage.java
index 0fb6ca5..7d1b4d9 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/importexport/launchconfigurations/ImportLaunchConfigurationsWizardPage.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/importexport/launchconfigurations/ImportLaunchConfigurationsWizardPage.java
@@ -308,7 +308,6 @@
      */
     protected void resetSelection(final IPath path) {
     	BusyIndicator.showWhile(getShell().getDisplay(), new Runnable() {
-			@SuppressWarnings("restriction")
 			@Override
 			public void run() {
 				File file = new File(path.toOSString());