chore: suppress unused parameter warnings

This commit is contained in:
Harsh Shandilya 2023-09-14 15:09:57 +05:30
parent a24d5102bf
commit 7a28726a2a
No known key found for this signature in database
2 changed files with 2 additions and 0 deletions

View File

@ -66,6 +66,7 @@ public fun recordMessage(message: Any?) {
/** An example of an annotated method which will be transformed by the compiler plugin. */
@DebugLog
@Suppress("UNUSED_PARAMETER")
public fun debuggableFunction(p0: String, p1: String = "Bar"): String {
return "Debugging is cool!"
}

View File

@ -16,6 +16,7 @@ fun recordMessage(message: Any?) {
/** An example of an annotated method which will be transformed by the compiler plugin. */
@DebugLog
@Suppress("UNUSED_PARAMETER")
fun debuggableFunction(p0: String, p1: String = "Bar"): String {
return "Debugging is cool!"
}