Use better signature match in deprecation message
This commit is contained in:
parent
4718c726f6
commit
80e9631220
1 changed files with 2 additions and 2 deletions
|
@ -28,11 +28,11 @@ class CrashReporter
|
||||||
extra._version ?= app.getVersion()
|
extra._version ?= app.getVersion()
|
||||||
|
|
||||||
unless companyName?
|
unless companyName?
|
||||||
deprecate.log('companyName is now a required option to CrashReporter::start')
|
deprecate.log('companyName is now a required option to crashReporter.start')
|
||||||
return
|
return
|
||||||
|
|
||||||
unless submitURL?
|
unless submitURL?
|
||||||
deprecate.log('submitURL is now a required option to CrashReporter::start')
|
deprecate.log('submitURL is now a required option to crashReporter.start')
|
||||||
return
|
return
|
||||||
|
|
||||||
start = => binding.start @productName, companyName, submitURL, autoSubmit, ignoreSystemCrashHandler, extra
|
start = => binding.start @productName, companyName, submitURL, autoSubmit, ignoreSystemCrashHandler, extra
|
||||||
|
|
Loading…
Reference in a new issue