Ignore:
Timestamp:
2019-03-12T15:48:00+01:00 (5 years ago)
Author:
malcolmh
Message:

fix exception problem

File:
1 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/seachart/src/s57/S57dat.java

    r34599 r34921  
    77import java.util.Arrays;
    88import java.util.EnumMap;
    9 
    10 import org.openstreetmap.josm.tools.Logging;
    119
    1210import s57.S57map.Feature;
     
    219217                    str = new String(buffer, offset, i, charset);
    220218                } catch (UnsupportedEncodingException e) {
    221                     Logging.error(e);
     219                    System.err.println(e.getMessage());
     220                    System.exit(-1);
    222221                }
    223222                offset += i + 1;
Note: See TracChangeset for help on using the changeset viewer.