Closed d6y closed 4 years ago
The depecations fixed:
<>
We had a few cases of:
def * = (col1, col2, col3) <> (f, g)
This is deprecated for autotupling changes. Thankfully we don't need <> any more (with mapTo), but where we do show it we've gone for:
mapTo
def * = (col1, col2, col3).<>(f, g)
A small number of cases of foo where the method was defined as foo(), so now we must call it as foo().
foo
foo()
The depecations fixed:
<>
and autotuplingWe had a few cases of:
This is deprecated for autotupling changes. Thankfully we don't need
<>
any more (withmapTo
), but where we do show it we've gone for:A small number of cases of
foo
where the method was defined asfoo()
, so now we must call it asfoo()
.