dennislaumen / Scalify

Scala implementation of the Spotify Metadata API.
MIT License
2 stars 0 forks source link

Make nullable fields in URI types Option[T] #5

Open dennislaumen opened 14 years ago

dennislaumen commented 14 years ago

It seems to be more Scala-y to define nullable fields of artists, albums and tracks as Option[T].

dennislaumen commented 14 years ago

Some fields in Track.scala are now Option[T]. Downside so far seems that it isn't possible to implicitly convert T to Some[T](which would've been way more elegant).