Skip to content

Commit

Permalink
PLANNER-549 TemporalValueRange: use correct factory method name
Browse files Browse the repository at this point in the history
  • Loading branch information
ge0ffrey committed Apr 11, 2016
1 parent bb3626f commit cfb6895
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -148,7 +148,7 @@ public static CountableValueRange<BigDecimal> createBigDecimalValueRange(BigDeci
* @param incrementUnitAmount {@code > 0}
* @param incrementUnitType never null, must be {@link Temporal#isSupported(TemporalUnit) supported} by {@code from} and {@code to}
*/
public static CountableValueRange<Temporal> createTemporalRange(Temporal from, Temporal to, long incrementUnitAmount, TemporalUnit incrementUnitType) {
public static CountableValueRange<Temporal> createTemporalValueRange(Temporal from, Temporal to, long incrementUnitAmount, TemporalUnit incrementUnitType) {
return new TemporalValueRange(from, to, incrementUnitAmount, incrementUnitType);
}

Expand Down

0 comments on commit cfb6895

Please sign in to comment.