mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-17 05:55:22 +02:00
[187530] patch from Rupen to not log exception
This commit is contained in:
parent
b4c2702796
commit
d4bf6fa10d
1 changed files with 2 additions and 1 deletions
|
@ -12,6 +12,7 @@
|
||||||
*
|
*
|
||||||
* Contributors:
|
* Contributors:
|
||||||
* Martin Oberhuber (Wind River) - [168975] Move RSE Events API to Core
|
* Martin Oberhuber (Wind River) - [168975] Move RSE Events API to Core
|
||||||
|
* Rupen Mardirossian (IBM) - [187530] Commented out line 192, in order to stop logging of SystemMessageException
|
||||||
********************************************************************************/
|
********************************************************************************/
|
||||||
|
|
||||||
package org.eclipse.rse.internal.files.ui.wizards;
|
package org.eclipse.rse.internal.files.ui.wizards;
|
||||||
|
@ -188,7 +189,7 @@ public class SystemNewFileWizard
|
||||||
mainPage.setMessage(msg);
|
mainPage.setMessage(msg);
|
||||||
ok = false;
|
ok = false;
|
||||||
} catch (SystemMessageException e) {
|
} catch (SystemMessageException e) {
|
||||||
SystemBasePlugin.logError(CLASSNAME+ ":", e); //$NON-NLS-1$
|
//SystemBasePlugin.logError(CLASSNAME+ ":", e); //$NON-NLS-1$
|
||||||
mainPage.setMessage(e.getSystemMessage());
|
mainPage.setMessage(e.getSystemMessage());
|
||||||
ok = false;
|
ok = false;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue