Ignore:
Timestamp:
2009-09-20T13:52:03+02:00 (16 years ago)
Author:
pieren
Message:

Fix delays on raster cache saving; small issue fixed in file selection dialog.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/cadastre-fr/src/cadastre_fr/CacheControl.java

    r17215 r17719  
    167167                        ObjectOutputStream oos = new ObjectOutputStream(
    168168                                new BufferedOutputStream(new FileOutputStream(file)));
    169                         wmsLayer.write(oos, images);
     169                        wmsLayer.write(oos);
     170                        for (GeorefImage img : images) {
     171                            oos.writeObject(img);
     172                        }
    170173                        oos.close();
    171174                    }
Note: See TracChangeset for help on using the changeset viewer.