Remove unnecessary annotations
This commit is contained in:
parent
9de83eed83
commit
7a18f2e5ca
1 changed files with 2 additions and 3 deletions
|
@ -1,7 +1,6 @@
|
||||||
|
|
||||||
package net.osmand;
|
package net.osmand;
|
||||||
|
|
||||||
import com.sun.istack.internal.NotNull;
|
|
||||||
|
|
||||||
import net.osmand.data.QuadRect;
|
import net.osmand.data.QuadRect;
|
||||||
import net.osmand.util.Algorithms;
|
import net.osmand.util.Algorithms;
|
||||||
|
@ -1541,7 +1540,7 @@ public class GPXUtilities {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setGradientScaleType(@NotNull GradientScaleType gradientScaleType) {
|
public void setGradientScaleType(GradientScaleType gradientScaleType) {
|
||||||
getExtensionsToWrite().put("gradient_scale_type", gradientScaleType.name());
|
getExtensionsToWrite().put("gradient_scale_type", gradientScaleType.name());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1559,7 +1558,7 @@ public class GPXUtilities {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setSplitType(@NotNull GpxSplitType gpxSplitType) {
|
public void setSplitType(GpxSplitType gpxSplitType) {
|
||||||
getExtensionsToWrite().put("split_type", gpxSplitType.name());
|
getExtensionsToWrite().put("split_type", gpxSplitType.name());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue