greenstone.org greenstone wiki greenstone trac planet greenstone

Changeset 17004

Show
Ignore:
Timestamp:
2008-08-25 21:09:28 (5 months ago)
Author:
ak19
Message:

Fixed small bug that made the browser (Firefox) crash when trying to reload the Applet (for GS3)

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • gli/trunk/src/org/greenstone/gatherer/GathererApplet.java

    r17000 r17004  
    201201        System.err.println("Destroy called"); 
    202202        gatherer.exit(); 
    203         gatherer = null; 
     203        // Don't do the following: on reloading the applet in the browser  
     204        // the browser (tested on Firefox) crashes if gatherer set to null here. 
     205        //gatherer = null;  
    204206        System.err.println("Done gatherer exit."); 
    205207    }