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:
parent
5019404aca
commit
60a6df99a1
1 changed files with 2 additions and 2 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Reference in a new issue