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 228551
Collapse All | Expand All

(-)a/mobility.cldcplatform/src/org/netbeans/modules/mobility/cldcplatform/UEIEmulatorConfiguratorImpl.java (-1 / +1 lines)
Lines 482-488 Link Here
482
            List<J2MEPlatform.J2MEProfile> official = new ArrayList<J2MEPlatform.J2MEProfile>();
482
            List<J2MEPlatform.J2MEProfile> official = new ArrayList<J2MEPlatform.J2MEProfile>();
483
            for(J2MEPlatform.J2MEProfile p : jars) {
483
            for(J2MEPlatform.J2MEProfile p : jars) {
484
                if(!p.getType().equalsIgnoreCase("profile") || 
484
                if(!p.getType().equalsIgnoreCase("profile") || 
485
                        ( (profileName != null) && (p.getName().startsWith(profileName)) )
485
                        profileName == null || p.getName().startsWith(profileName) 
486
                        ) {
486
                        ) {
487
                    official.add(p);
487
                    official.add(p);
488
                }
488
                }

Return to bug 228551