1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-14 20:45:22 +02:00

[216252] Refactor some simple Canceled -> Cancelled

This commit is contained in:
Martin Oberhuber 2008-04-11 23:48:53 +00:00
parent 2198e60bb9
commit b9fd5167cd

View file

@ -549,7 +549,7 @@ public class LocalFileService extends AbstractFileService implements ILocalServi
if (null != monitor && monitor.isCanceled()) if (null != monitor && monitor.isCanceled())
{ {
//This operation has been canceled by the user. //This operation has been canceled by the user.
throw getCanceledException(); throw getCancelledException();
} }
// SystemPlugin.logError("LocalFileSubSystemImpl.copyToArchive(): Handler's add() method returned false."); // SystemPlugin.logError("LocalFileSubSystemImpl.copyToArchive(): Handler's add() method returned false.");
String msgTxt = NLS.bind(LocalServiceResources.FILEMSG_FILE_NOT_SAVED, destination.getName(), "localhost"); //$NON-NLS-1$ String msgTxt = NLS.bind(LocalServiceResources.FILEMSG_FILE_NOT_SAVED, destination.getName(), "localhost"); //$NON-NLS-1$
@ -949,7 +949,7 @@ public class LocalFileService extends AbstractFileService implements ILocalServi
if (null != monitor && monitor.isCanceled()) if (null != monitor && monitor.isCanceled())
{ {
//This operation has been canceled by the user. //This operation has been canceled by the user.
throw getCanceledException(); throw getCancelledException();
} }
String msgTxt = NLS.bind(LocalServiceResources.FILEMSG_CREATE_VIRTUAL_FAILED, newFile); String msgTxt = NLS.bind(LocalServiceResources.FILEMSG_CREATE_VIRTUAL_FAILED, newFile);
@ -1029,7 +1029,7 @@ public class LocalFileService extends AbstractFileService implements ILocalServi
if (null != monitor && monitor.isCanceled()) if (null != monitor && monitor.isCanceled())
{ {
//This operation has been canceled by the user. //This operation has been canceled by the user.
throw getCanceledException(); throw getCancelledException();
} }
String msgTxt = NLS.bind(LocalServiceResources.FILEMSG_CREATE_VIRTUAL_FAILED, newFolder); String msgTxt = NLS.bind(LocalServiceResources.FILEMSG_CREATE_VIRTUAL_FAILED, newFolder);
@ -1135,7 +1135,7 @@ public class LocalFileService extends AbstractFileService implements ILocalServi
if (monitor != null && monitor.isCanceled()) if (monitor != null && monitor.isCanceled())
{ {
//This operation has been canceled by the user. //This operation has been canceled by the user.
throw getCanceledException(); throw getCancelledException();
} }
// SystemPlugin.logError("LocalFileSubSystemImpl.deleteFromArchive(): Archive Handler's delete method returned false. Couldn't delete virtual object."); // SystemPlugin.logError("LocalFileSubSystemImpl.deleteFromArchive(): Archive Handler's delete method returned false. Couldn't delete virtual object.");
String msgTxt = NLS.bind(LocalServiceResources.FILEMSG_DELETE_VIRTUAL_FAILED, destination); String msgTxt = NLS.bind(LocalServiceResources.FILEMSG_DELETE_VIRTUAL_FAILED, destination);
@ -1213,7 +1213,7 @@ public class LocalFileService extends AbstractFileService implements ILocalServi
if (null != monitor && monitor.isCanceled()) if (null != monitor && monitor.isCanceled())
{ {
//This operation has been canceled by the user. //This operation has been canceled by the user.
throw getCanceledException(); throw getCancelledException();
} }
// for 192705, we need to throw an exception when rename fails // for 192705, we need to throw an exception when rename fails
@ -1432,7 +1432,7 @@ public class LocalFileService extends AbstractFileService implements ILocalServi
if (monitor != null && monitor.isCanceled()) if (monitor != null && monitor.isCanceled())
{ {
//This operation has been canceled by the user. //This operation has been canceled by the user.
throw getCanceledException(); throw getCancelledException();
} }
// for 192705, we need to throw an exception when rename fails // for 192705, we need to throw an exception when rename fails
@ -1454,7 +1454,7 @@ public class LocalFileService extends AbstractFileService implements ILocalServi
if (monitor != null && monitor.isCanceled()) if (monitor != null && monitor.isCanceled())
{ {
//This operation has been canceled by the user. //This operation has been canceled by the user.
throw getCanceledException(); throw getCancelledException();
} }
if (child.isDirectory) if (child.isDirectory)
{ {
@ -1500,7 +1500,7 @@ public class LocalFileService extends AbstractFileService implements ILocalServi
if (monitor != null && monitor.isCanceled()) if (monitor != null && monitor.isCanceled())
{ {
//This operation has been canceled by the user. //This operation has been canceled by the user.
throw getCanceledException(); throw getCancelledException();
} }
} }
return returnValue; return returnValue;
@ -1772,7 +1772,7 @@ public class LocalFileService extends AbstractFileService implements ILocalServi
} }
private SystemMessageException getCanceledException() private SystemMessageException getCancelledException()
{ {
//This operation has been canceled by the user. //This operation has been canceled by the user.
return new SystemMessageException(new SimpleSystemMessage(Activator.PLUGIN_ID, return new SystemMessageException(new SimpleSystemMessage(Activator.PLUGIN_ID,