Ignore:
Timestamp:
2006-01-23T13:24:35+13:00 (18 years ago)
Author:
mdewsnip
Message:

Removed the "progress" parameter from copyFile, as part of the FileQueue rewrite.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/gli/src/org/greenstone/gatherer/collection/CollectionManager.java

    r11079 r11080  
    290290       
    291291        // copy the contents over
    292         Gatherer.f_man.getQueue().copyDirectoryContents(base_coll_images, new_coll_images, null);
     292        Gatherer.f_man.getQueue().copyDirectoryContents(base_coll_images, new_coll_images);
    293293        }
    294294    }
     
    305305       
    306306        // copy the contents over
    307         Gatherer.f_man.getQueue().copyDirectoryContents(base_coll_macros, new_coll_macros, null);
     307        Gatherer.f_man.getQueue().copyDirectoryContents(base_coll_macros, new_coll_macros);
    308308        }
    309309    }
     
    742742    if (!metadata_set_file.exists()) {
    743743        try {
    744         Gatherer.f_man.getQueue().copyFile(external_metadata_set_file, metadata_set_file, false, null);
     744        Gatherer.f_man.getQueue().copyFile(external_metadata_set_file, metadata_set_file, false);
    745745
    746746        // If we're using a remote Greenstone server, upload the metadata file
Note: See TracChangeset for help on using the changeset viewer.