Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8f1f586 commit ee1bb7eCopy full SHA for ee1bb7e
appindexing/app/src/main/java/com/google/firebase/example/appindexing/kotlin/AppIndexingUpdateService.kt
@@ -46,9 +46,9 @@ class AppIndexingUpdateService : JobIntentService() {
46
// batch insert indexable notes into index
47
try {
48
Tasks.await(FirebaseAppIndex.getInstance().update(*notesArr))
49
- } catch (ExecutionException e) {
+ } catch (e: ExecutionException) {
50
// update failed
51
- } catch (InterruptedException e) {
+ } catch (e: InterruptedException) {
52
// await was interrupted
53
}
54
0 commit comments