1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-04 07:35:24 +02:00

[cleanup] Fix compiler warnings

This commit is contained in:
Martin Oberhuber 2006-08-25 17:02:07 +00:00
parent ef98b74284
commit 3479b29549
11 changed files with 18 additions and 27 deletions

View file

@ -472,13 +472,15 @@ public class SystemFileFilterStringEditPane
errorMessage = validateFolderInput();
if (errorMessage != null)
controlInError = folderCombo;
if (errorMessage == null)
{
if (subsetByFileNameRadioButton.getSelection())
{
controlInError = folderCombo;
}
else
{
if (subsetByFileNameRadioButton.getSelection()) {
errorMessage = validateFileInput();
else
}
else
{
if (textTypes.getText().trim().length() == 0)
{

View file

@ -43,7 +43,7 @@ public class StatusChangeListener implements IDomainListener
protected Vector historyOfTargets;
protected class FindShell implements Runnable {
protected static class FindShell implements Runnable {
private Shell shell;
/**
@ -169,9 +169,6 @@ public class StatusChangeListener implements IDomainListener
this.done = done;
}
/**
* @see IDomainListener#getShell()
*/
public Shell getShell() {
// dy: DomainNotifier (which calls this method) requires the shell not be disposed
//if (shell == null) {

View file

@ -52,7 +52,7 @@ public class StatusChangeListener implements IDomainListener, ICommunicationsLis
protected Vector historyOfTargets;
protected class FindShell implements Runnable {
protected static class FindShell implements Runnable {
private Shell shell;
/**
@ -192,9 +192,6 @@ public class StatusChangeListener implements IDomainListener, ICommunicationsLis
this.done = done;
}
/**
* @see IDomainListener#getShell()
*/
public Shell getShell() {
// dy: DomainNotifier (which calls this method) requires the shell not be disposed
//if (shell == null) {
@ -412,7 +409,7 @@ public class StatusChangeListener implements IDomainListener, ICommunicationsLis
* Start diagnostic
*
* @param Class diagnostic is the an implementation of ICommunicationsDiagnostic
* @param boolean quiet is the flag to indicate if user should be prompted
* @param quiet is the flag to indicate if user should be prompted
* - true for no prompt
* @return ICommunciationsDiagnostic class instance
*/

View file

@ -123,7 +123,7 @@ public class SystemFilterMoveDownFilterPoolReferenceAction extends SystemBaseAct
ISystemFilterPoolReferenceManager fprMgr = null;
while (i.hasNext())
{
sortableArray[idx] = new SystemSortableSelection((ISystemFilterPoolReference)i.next());
sortableArray[idx] = new SystemSortableSelection(i.next());
filterPoolRef = (ISystemFilterPoolReference)sortableArray[idx].getSelectedObject();
fprMgr = filterPoolRef.getFilterPoolReferenceManager();
sortableArray[idx].setPosition(fprMgr.getSystemFilterPoolReferencePosition(filterPoolRef));

View file

@ -19,7 +19,6 @@ package org.eclipse.rse.ui.filters.dialogs;
import java.util.Vector;
import org.eclipse.jface.resource.ImageDescriptor;
import org.eclipse.jface.wizard.WizardPage;
import org.eclipse.rse.core.SystemBasePlugin;
import org.eclipse.rse.filters.ISystemFilter;
import org.eclipse.rse.filters.ISystemFilterContainer;

View file

@ -230,7 +230,7 @@ public class SystemFetchOperation extends JobChangeAdapter implements IRunnableW
*/
protected void displayAsyncMsg(SubSystem ss, org.eclipse.rse.services.clientserver.messages.SystemMessageException msg)
{
DisplayErrorMessageJob job = ss.new DisplayErrorMessageJob(null, msg);
DisplayErrorMessageJob job = new DisplayErrorMessageJob(null, msg);
job.setPriority(Job.INTERACTIVE);
job.setSystem(true);
job.schedule();

View file

@ -15,7 +15,6 @@
********************************************************************************/
package org.eclipse.rse.ui.wizards;
import org.eclipse.jface.wizard.WizardPage;
import org.eclipse.rse.core.SystemBasePlugin;
import org.eclipse.rse.model.ISystemRegistry;
import org.eclipse.rse.ui.ISystemIconConstants;

View file

@ -18,7 +18,6 @@ package org.eclipse.rse.internal.filters;
import org.eclipse.core.runtime.IAdaptable;
import org.eclipse.core.runtime.Platform;
import org.eclipse.rse.core.references.IRSEPersistableReferencedObject;
import org.eclipse.rse.core.subsystems.ISubSystem;
import org.eclipse.rse.filters.ISystemFilter;
import org.eclipse.rse.filters.ISystemFilterContainer;

View file

@ -16,7 +16,6 @@
package org.eclipse.rse.internal.references;
import org.eclipse.rse.core.references.IRSEBasePersistableReferencedObject;
import org.eclipse.rse.core.references.IRSEBaseReferencedObject;
import org.eclipse.rse.core.references.IRSEBaseReferencingObject;
/**

View file

@ -961,7 +961,7 @@ public abstract class SubSystem extends RSEModelObject implements IAdaptable, IS
/**
* Display message on message thread
*/
protected void displayAsyncMsg(org.eclipse.rse.services.clientserver.messages.SystemMessageException msg)
protected void displayAsyncMsg(SystemMessageException msg)
{
DisplayErrorMessageJob job = new DisplayErrorMessageJob(getShell(), msg);
job.setPriority(Job.INTERACTIVE);
@ -969,18 +969,18 @@ public abstract class SubSystem extends RSEModelObject implements IAdaptable, IS
job.schedule();
}
/**
* Inner class which extends WorkbenchJob to allow us to show an error message, which is a GUI operation,
* Nested class which extends WorkbenchJob to allow us to show an error message, which is a GUI operation,
* from a non-GUI thread. This is done by creating an instance of this class and then scheduling it.
*/
public class DisplayErrorMessageJob extends WorkbenchJob
public static class DisplayErrorMessageJob extends WorkbenchJob
{
private Shell shell;
private org.eclipse.rse.services.clientserver.messages.SystemMessageException msgExc;
private SystemMessageException msgExc;
/**
* Constructor
*/
public DisplayErrorMessageJob(Shell shell, org.eclipse.rse.services.clientserver.messages.SystemMessageException msgExc)
public DisplayErrorMessageJob(Shell shell, SystemMessageException msgExc)
{
super("");
this.shell = shell; //FIXME remove this

View file

@ -15,7 +15,6 @@
********************************************************************************/
package org.eclipse.rse.core;
import org.eclipse.core.runtime.IAdaptable;
import org.eclipse.rse.ui.RSEUIPlugin;
import org.eclipse.rse.ui.view.ISystemRemoteElementAdapter;
import org.eclipse.ui.internal.dialogs.PropertyPageManager;