Do not reimplement Iterable until Progression is dropped.

This commit is contained in:
Ilya Gorbunov
2015-10-29 22:48:35 +03:00
parent 6ac0ac01b3
commit 9eb5ba910c
2 changed files with 8 additions and 8 deletions
@@ -81,7 +81,7 @@ public open class $progression(
override val start: $t,
val endInclusive: $t,
override val increment: $incrementType
) : Progression<$t>, Iterable<$t> {
) : Progression<$t> /*, Iterable<$t> */ {
init {
$constructor
}