-
Notifications
You must be signed in to change notification settings - Fork 80
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Make sure not to remove valid semicolons
Summary: Fixes #459, which solves this code here being turned invalid by ktfmt ``` fun doSearch() { _results.postValue(Resource.Loading()); { performSearch(searchParams) } .multiCatch( SocketException::class, SocketTimeoutException::class, SSLException::class ) { // Activity suspended while parsing stream _results.postValue(Resource.Error(it, null)) } } ``` Reviewed By: strulovich Differential Revision: D58465670 fbshipit-source-id: ac2c5ea174f79d21bab5ca0ef62eb3bf69848b95
- Loading branch information
1 parent
e90d4fc
commit 5d5b0f7
Showing
2 changed files
with
23 additions
and
29 deletions.
There are no files selected for viewing
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
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