Changeset 6512
- Timestamp:
- Aug 12, 2014, 1:41:20 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/3.3-stable/src/plugins/core/net/sf/basedb/plugins/PackedFileExporter.java
r6127 r6512 35 35 import net.sf.basedb.core.ItemParameterType; 36 36 import net.sf.basedb.core.ItemQuery; 37 import net.sf.basedb.core.Location;38 37 import net.sf.basedb.core.Nameable; 39 38 import net.sf.basedb.core.ParameterType; … … 578 577 { 579 578 File f = File.getById(dc, fileId); 580 if (f.getLocation() == Location.PRIMARY)579 if (f.getLocation().isDownloadable()) 581 580 { 582 581 loadedFiles.add(f); … … 623 622 { 624 623 ThreadSignalHandler.checkInterrupted(); 625 if (f.getLocation() == Location.PRIMARY)624 if (f.getLocation().isDownloadable()) 626 625 { 627 626 loadedFiles.add(f);
Note: See TracChangeset
for help on using the changeset viewer.