1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-08-11 10:15:39 +02:00

Bug 142465 :Exception when expanding binary node in CView

Avoid duplication source files. 1-line change.
This commit is contained in:
Oleg Krasilnikov 2006-06-19 11:23:22 +00:00
parent 74e3308a05
commit dafc8e4478

View file

@ -336,7 +336,8 @@ public class Binary extends Openable implements IBinary {
else
tu = new ExternalTranslationUnit(this, path, id);
info.addChild(tu);
if (! info.includesChild(tu))
info.addChild(tu);
}
}
return true;