Rename method argument
This commit is contained in:
parent
9ee4ff933f
commit
574c9586a1
2 changed files with 6 additions and 6 deletions
|
@ -56,16 +56,16 @@ interface CrashCategory {
|
|||
* with `Map<String, Any>`. Any other
|
||||
* values will be ignored.
|
||||
*
|
||||
* @param call [Call] metadata
|
||||
* @param channelconf [ChannelSettings] instance or `null`. Use this to access [ChannelSettings.getSetting]
|
||||
* @param throwable the [Throwable] which caused the crash
|
||||
* @param fatal terminates the engine and application if `true`
|
||||
* @param call [Call] metadata
|
||||
* @param channelSettings [ChannelSettings] instance or `null`. Use this to access [ChannelSettings.getSetting]
|
||||
* @param throwable the [Throwable] which caused the crash
|
||||
* @param fatal terminates the engine and application if `true`
|
||||
* @return crash category items
|
||||
* @since v1-alpha10
|
||||
*/
|
||||
fun execute(
|
||||
call: Call,
|
||||
channelconf: ChannelSettings?,
|
||||
channelSettings: ChannelSettings?,
|
||||
throwable: Throwable?,
|
||||
fatal: Boolean,
|
||||
): LinkedHashMap<String, Any>
|
||||
|
|
|
@ -56,7 +56,7 @@ class InfoCrashCategory private constructor() : CrashCategory {
|
|||
|
||||
override fun execute(
|
||||
call: Call,
|
||||
channelconf: ChannelSettings?,
|
||||
channelSettings: ChannelSettings?,
|
||||
throwable: Throwable?,
|
||||
fatal: Boolean,
|
||||
): LinkedHashMap<String, Any> {
|
||||
|
|
Loading…
Reference in a new issue