Rename method argument
All checks were successful
PRs & Pushes / build (push) Successful in 2m36s
PRs & Pushes / test (push) Successful in 2m35s
PRs & Pushes / build-apidoc (push) Successful in 2m33s

This commit is contained in:
JeremyStar™ 2024-12-18 17:22:08 +01:00
parent 9ee4ff933f
commit 574c9586a1
Signed by: JeremyStarTM
GPG key ID: E366BAEF67E4704D
2 changed files with 6 additions and 6 deletions

View file

@ -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>

View file

@ -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> {