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