This commit is contained in:
Eugene Yokota 2014-11-19 01:57:28 -05:00
parent 80b9cd0cc0
commit b6a2011734
1 changed files with 6 additions and 4 deletions

View File

@ -42,11 +42,13 @@
### Fixes with compatibility implications
- Maven artifact dependencies will limit their transitive dependencies to `Compile` rather than *every configuration* if no `master` configuration is found. [#1586][1586] by [@jsuereth][@jsuereth]
- The new natural whitspace handling parser is unable to cope with certain classes of Scala syntax. In particular, top-level pattern matches, or multi-value defintions are no longer supported:
- The new natural whitspace handling parser is unable to cope with certain classes of Scala syntax. In particular, top-level pattern matches, or multi-value defintions are no longer supported.
val x, y = project // BAD
val x = project //
val y = project // GOOD
Here are examples:
val x, y = project // BAD
val x = project //
val y = project // GOOD
### Improvements