[Non-func] Removed dead code, reformatted comments for javadoc

This commit is contained in:
Daniel_M_Williams 2016-10-13 16:06:01 -04:00
parent 05d439bd1e
commit 59a596520a

View File

@ -178,14 +178,14 @@ public abstract class Unit {
*/ */
public abstract double getPreviousValue(double value); public abstract double getPreviousValue(double value);
//public abstract ArrayList<Tick> getTicks(double start, double end, double scale); /**
* Return ticks in the range start - end (in current units).
/** *
* Return ticks in the range start - end (in current units). minor is the minimum * @param start start of interval to draw
* distance between minor, non-notable ticks and major the minimum distance between * @param end end of interval to draw
* major non-notable ticks. The values are in current units, i.e. no conversion is * @param minor the minimum distance between minor, non-notable ticks
* performed. * @param major the minimum distance between major, non-notable ticks
*/ */
public abstract Tick[] getTicks(double start, double end, double minor, double major); public abstract Tick[] getTicks(double start, double end, double minor, double major);
/** /**