This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

View | Details | Raw Unified | Return to bug 185376
Collapse All | Expand All

(-)a/maven/src/org/netbeans/modules/maven/customizer/SourcesPanel.java (-1 / +1 lines)
Lines 89-95 Link Here
89
        comSourceLevel.setEditable(false);
89
        comSourceLevel.setEditable(false);
90
        sourceLevel = SourceLevelQuery.getSourceLevel(project.getProjectDirectory());
90
        sourceLevel = SourceLevelQuery.getSourceLevel(project.getProjectDirectory());
91
        comSourceLevel.setModel(new DefaultComboBoxModel(new String[] {
91
        comSourceLevel.setModel(new DefaultComboBoxModel(new String[] {
92
            "1.3", "1.4", "1.5", "1.6" //NOI18N
92
            "1.3", "1.4", "1.5", "1.6", "1.7" //NOI18N
93
        }));
93
        }));
94
        
94
        
95
        comSourceLevel.setSelectedItem(sourceLevel);
95
        comSourceLevel.setSelectedItem(sourceLevel);

Return to bug 185376