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

Fix Java 1.4 compliance

This commit is contained in:
Anton Leherbauer 2006-07-03 13:24:36 +00:00
parent 5019404aca
commit 60a6df99a1

View file

@ -98,11 +98,11 @@ public class CNavigatorContentProvider extends CViewContentProvider implements I
if (memento != null) {
String mementoValue= memento.getString(PreferenceConstants.PREF_SHOW_CU_CHILDREN);
if (mementoValue != null) {
showCUChildren= Boolean.parseBoolean(mementoValue);
showCUChildren= Boolean.valueOf(mementoValue).booleanValue();
}
mementoValue= memento.getString(PreferenceConstants.CVIEW_GROUP_INCLUDES);
if (mementoValue != null) {
groupIncludes= Boolean.parseBoolean(mementoValue);
groupIncludes= Boolean.valueOf(mementoValue).booleanValue();
}
}
setProvideMembers(showCUChildren);