chore(android): remove unused returnType field

This commit is contained in:
Lucas Nogueira
2023-02-25 08:37:26 -03:00
parent 971ad7ae06
commit 8631eec038
2 changed files with 1 additions and 4 deletions

View File

@@ -5,4 +5,4 @@
package app.tauri.annotation
@Retention(AnnotationRetention.RUNTIME)
annotation class PluginMethod(val returnType: String = "promise") { }
annotation class PluginMethod

View File

@@ -13,7 +13,4 @@ class PluginMethodData(
// The name of the method
val name: String = method.name
// The return type of the method (see PluginMethod for constants)
val returnType: String = methodDecorator.returnType
}