Ignore:
Timestamp:
2016-07-11T23:01:43+02:00 (9 years ago)
Author:
donvip
Message:

checkstyle

File:
1 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/NanoLog/src/nanolog/NanoLogEntry.java

    r31981 r32638  
    77/**
    88 * This holds one NanoLog entry.
    9  * 
     9 *
    1010 * @author zverik
    1111 */
     
    1818    private LatLon basePos;
    1919
    20     public NanoLogEntry( Date time, String message, LatLon basePos, Integer baseDir ) {
     20    public NanoLogEntry(Date time, String message, LatLon basePos, Integer baseDir) {
    2121        this.basePos = basePos;
    2222        this.baseDir = baseDir;
     
    2727    }
    2828
    29     public NanoLogEntry( Date time, String message ) {
     29    public NanoLogEntry(Date time, String message) {
    3030        this(time, message, null, null);
    3131    }
    32    
     32
    3333    public Integer getDirection() {
    3434        return direction;
     
    4343    }
    4444
    45     public void setPos( LatLon pos ) {
     45    public void setPos(LatLon pos) {
    4646        this.pos = pos;
    4747    }
    4848
    49     public void setDirection( Integer direction ) {
     49    public void setDirection(Integer direction) {
    5050        this.direction = direction;
    5151    }
     
    6464
    6565    @Override
    66     public int compareTo( NanoLogEntry t ) {
     66    public int compareTo(NanoLogEntry t) {
    6767        return time.compareTo(t.time);
    6868    }
Note: See TracChangeset for help on using the changeset viewer.