locationtech / geotrellis

GeoTrellis is a geographic data processing engine for high performance applications.
http://geotrellis.io
Other
1.33k stars 360 forks source link

replace two uses of to[T] with equivalent toT #3360

Closed philvarner closed 3 years ago

philvarner commented 3 years ago

Signed-off-by: philvarner philvarner@gmail.com

Overview

There are two uses of to[T] methods in the proj4 module -- a to[List] and a `to[Vector]. These methods won't compile in 2.13, as to[Collection] method was replaced by the to(Collection) method, which is in the scala-collection-compat library. However, replacing these with toList and toVector is the simpler option, so doing that instead.

Checklist

Demo

none

Notes

none