Skip to content

Commit

Permalink
Fixed checkstyle warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
nbradbury committed Aug 6, 2024
1 parent 9bbb3a8 commit 765f77f
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -45,14 +45,13 @@ class ZendeskUploadHelper @Inject constructor() {
return
}
uploadProvider.deleteAttachment(token, object : ZendeskCallback<Void>() {
override fun onSuccess(result: Void?) {
override fun onSuccess(result: Void) {
AppLog.i(T.SUPPORT, "Successfully deleted Zendesk attachment")
}

override fun onError(error: ErrorResponse?) {
AppLog.e(T.SUPPORT, "Unable to delete Zendesk attachment")
}

})
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,6 @@ class FeedbackFormViewModel @Inject constructor(
callback = callback
)
}

}

companion object {
Expand Down

0 comments on commit 765f77f

Please sign in to comment.