Changeset 12434 in josm for trunk


Ignore:
Timestamp:
2017-06-25T16:45:46+02:00 (7 years ago)
Author:
Don-vip
Message:

sonar - squid:UndocumentedApi

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/io/nmea/NmeaReader.java

    r12424 r12434  
    4949        REST(9); // version-specific rest
    5050
    51         public final int position;
     51        final int position;
    5252
    5353        VTG(int position) {
     
    7171        MODE(12);
    7272
    73         public final int position;
     73        final int position;
    7474
    7575        RMC(int position) {
     
    9090        REF(14); // REF station
    9191
    92         public final int position;
     92        final int position;
    9393        GGA(int position) {
    9494            this.position = position;
     
    106106        VDOP(17);   // VDOP (vertical precision)
    107107
    108         public final int position;
     108        final int position;
    109109        GSA(int position) {
    110110            this.position = position;
     
    123123        MODE(7);
    124124
    125         public final int position;
     125        final int position;
    126126        GLL(int position) {
    127127            this.position = position;
     
    165165    }
    166166
     167    /**
     168     * Constructs a new {@code NmeaReader}
     169     * @param source NMEA file input stream
     170     * @throws IOException if an I/O error occurs
     171     */
    167172    public NmeaReader(InputStream source) throws IOException {
    168173        rmcTimeFmt.setTimeZone(DateUtils.UTC);
Note: See TracChangeset for help on using the changeset viewer.