Enable PMD rule UnnecessaryModifier and fix violations

This commit is contained in:
Manuel Fuhr 2022-11-13 16:04:56 +01:00
parent b68f1587b2
commit 5f942cc458
6 changed files with 19 additions and 20 deletions

View file

@ -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();
}