Merge pull request from teyrana/unit-comment-fix

Unit comment fix [single-file][non-functional][mini]
This commit is contained in:
kruland2607 2016-11-19 08:29:26 -06:00 committed by GitHub
commit e4aae02455

@ -178,13 +178,13 @@ 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). minor is the minimum * Return ticks in the range start - end (in current units).
* distance between minor, non-notable ticks and major the minimum distance between *
* major non-notable ticks. The values are in current units, i.e. no conversion is * @param start start of interval to draw
* performed. * @param end end of interval to draw
* @param minor the minimum distance between minor, non-notable ticks
* @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);