Index: src/org/netbeans/modules/cvsclient/actions/JavaCvsActionSupporter.java =================================================================== RCS file: /shared/data/helm/cvs/repository/javacvs/src/org/netbeans/modules/cvsclient/actions/JavaCvsActionSupporter.java,v retrieving revision 1.7 diff -c -r1.7 JavaCvsActionSupporter.java *** src/org/netbeans/modules/cvsclient/actions/JavaCvsActionSupporter.java 1 Nov 2002 16:05:59 -0000 1.7 --- src/org/netbeans/modules/cvsclient/actions/JavaCvsActionSupporter.java 25 Apr 2003 09:09:40 -0000 *************** *** 1,3 **** --- 1,16 ---- + /* + * Sun Public License Notice + * + * The contents of this file are subject to the Sun Public License + * Version 1.0 (the "License"). You may not use this file except in + * compliance with the License. A copy of the License is available at + * http://www.sun.com/ + * + * The Original Code is NetBeans. The Initial Developer of the Original + * Code is Sun Microsystems, Inc. Portions Copyright 1997-2003 Sun + * Microsystems, Inc. All Rights Reserved. + */ + package org.netbeans.modules.cvsclient.actions; *************** *** 197,213 **** } */ } ! if (fs != null) { impList = (java.util.List)map.get(fs); if (impList == null) { impList = new LinkedList(); } ! if (fo != null && fs != null) { ! // checking for fs null value because there can be ! // fileobjects that don't belong to cvs fs.. (secondary files not coming from the same fs) ! if (fs.isProcessAllFiles() || fs.isImportant(fo.getPackageNameExt('/', '.'))) { ! impList.add(fo); ! } } map.put(fs, impList); } --- 210,222 ---- } */ } ! if (fs != null && nativeFS != null) { impList = (java.util.List)map.get(fs); if (impList == null) { impList = new LinkedList(); } ! if (fs.isProcessAllFiles() || fs.isImportant(fo.getPackageNameExt('/', '.'))) { ! impList.add(fo); } map.put(fs, impList); }