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

Fix for PR 66186.

Remove the log() print not necessary
	and users thinks something went wrong.
	* src/org/eclipse/cdt/internal/ui/BaseCElementContentProvider.java
This commit is contained in:
Alain Magloire 2004-06-08 19:22:54 +00:00
parent c013ff1910
commit 5e8a965b20
2 changed files with 37 additions and 30 deletions

View file

@ -1,3 +1,10 @@
2004-06-08 Alain Magloire
Fix for PR 66186.
Remove the log() print not necessary
and users thinks something went wrong.
* src/org/eclipse/cdt/internal/ui/BaseCElementContentProvider.java
2004-06-07 Tanya Wolff 2004-06-07 Tanya Wolff
Fix for Bug 66053 - externalized string in cview Fix for Bug 66053 - externalized string in cview

View file

@ -160,7 +160,7 @@ public class BaseCElementContentProvider implements ITreeContentProvider {
return getResources((IFolder)element); return getResources((IFolder)element);
} }
} catch (CModelException e) { } catch (CModelException e) {
CUIPlugin.getDefault().log(e); //CUIPlugin.getDefault().log(e);
return NO_CHILDREN; return NO_CHILDREN;
} }
return NO_CHILDREN; return NO_CHILDREN;