-
Notifications
You must be signed in to change notification settings - Fork 20
Update scala 2.13.0-M5 to 2.13.0-RC2 #17
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
@@ -34,7 +34,7 @@ object Implicits { | |||
if (file.exists) | |||
Success(true) | |||
else | |||
Failure(new FileDoesNotExistException(s""""$file" does not exist.""")) | |||
Failure(new FileDoesNotExistException(s""""${file.toString}" does not exist.""")) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
curious about this and the other similar diffs, why is this necessary/desirable?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The [wartremover:StringPlusAny] Implicit conversion to string is disabled
-wart triggers on scala 2.13.0-RC1, which maybe it shouldn't? On scala 2.12.8 it does not.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ah. hmmm....
I think I personally wouldn't expect or want the wart to trigger inside a string interpolator, but that's just a hunch, not sure what the wart's author's intentions might have been
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I filed an issue here: wartremover/wartremover#447
6a4b296
to
7f34848
Compare
Merged. I'll release an update soon—this weekend, if not before. (I've been swamped.) |
No description provided.