Ignore:
Timestamp:
2012-05-22T13:01:04+12:00 (12 years ago)
Author:
sjm84
Message:

Fixing Greenstone 3's use (or lack thereof) of generics, this was done automatically so we may want to change it over time. This change will also auto-format any files that have not already been formatted.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/trunk/greenstone3/src/java/org/greenstone/admin/guiext/DownloadStep.java

    r23582 r25635  
    123123        String defaultDownloadLocation = GAI.getGSDL3ExtensionHome() + System.getProperty("file.separator") + fileStem;
    124124
    125         ArrayList sourceElements = new ArrayList();
     125        ArrayList<Source> sourceElements = new ArrayList<Source>();
    126126        sourceElements.add(_mainSource);
    127127
     
    134134        for(int i = 0; i < sourceElements.size(); i++){
    135135       
    136         Source currentSource = (Source)sourceElements.get(i);
     136        Source currentSource = sourceElements.get(i);
    137137        String destinationFolder = null;
    138138
Note: See TracChangeset for help on using the changeset viewer.