ricmf
ricmf
Eu acho essa funcionalidade bem interessante. Deveria ser possível comprovar que um pagamento foi feito de acesso apenas da tx-id, numa API aberta tanto para o recebedor quanto para o...
How do you go about securing your key, since you can't restrict the domain? Anyone who looks at your jar could retrieve the key and use your quota.
Why should annotations be prohibited on properties? In the previous example inline class UserId(@SerializedName("user_id") private val id: String) The annotation could simply be inlined as well. This would allow for...
It could be inlined on the filed/parameter that resulted from inlining the class. inline class UserId(@SerializedName("user_id") private val id: String) fun test(userId: UserId) { } class Foo(val userId : UserId)...
> Lots of frameworks/libraries won't be looking at annotations on method parameters That's true, but i don't see how it's an argument for forbidding annotations. If the frameworks don't search...