Recovered a private method used in a test

main
Connor Taylor-Brown 8 years ago
parent c94e0af69c
commit bae428fb3f

@ -182,4 +182,10 @@ public class NewPolars {
public static double modulateAngle(double angle){ public static double modulateAngle(double angle){
return (angle % 360 + 360) % 360; return (angle % 360 + 360) % 360;
} }
@SuppressWarnings("unused")
private Map<Double, TreeMap<Double, Double>> getPolars(){
//this function is just for testing so therefore it is private
return polars;
}
} }

Loading…
Cancel
Save