Created
August 27, 2014 10:15
-
-
Save rylev/b40ecce85750bd528c0d to your computer and use it in GitHub Desktop.
Scala If-Bock Styles
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if (resp.isSuccess) | |
Future{ NoContent } | |
else passthrough(resp) | |
if (resp.isSuccess) { | |
Future{ NoContent } | |
} else { | |
passthrough(resp) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
What about this?
At least that would feel symmetric.