Enable PMD rule UnnecessaryModifier and fix violations
This commit is contained in:
parent
b68f1587b2
commit
5f942cc458
6 changed files with 19 additions and 20 deletions
|
|
@ -7,16 +7,16 @@ package btools.mapaccess;
|
|||
|
||||
|
||||
public interface OsmPos {
|
||||
public int getILat();
|
||||
int getILat();
|
||||
|
||||
public int getILon();
|
||||
int getILon();
|
||||
|
||||
public short getSElev();
|
||||
short getSElev();
|
||||
|
||||
public double getElev();
|
||||
double getElev();
|
||||
|
||||
public int calcDistance(OsmPos p);
|
||||
int calcDistance(OsmPos p);
|
||||
|
||||
public long getIdFromPos();
|
||||
long getIdFromPos();
|
||||
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue