You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
hello, first of all, this is an awesome library, thank you for taking the time to write this. I have a class with a property int, which doesn't become part of the builder. Here's a snippet:
val str: Int = 0,
val int: Int = 0,
val wis: Int = 0,
val dex: Int = 0,
val con: Int = 0,
the corresponding builder gets:
private var str: Int? = null
private var wis: Int? = null
private var dex: Int? = null
private var con: Int? = null
is this expected behavior? If not I'd be happy to help debug the issue. Thanks for reading and have a great day!
hello, first of all, this is an awesome library, thank you for taking the time to write this. I have a class with a property
int, which doesn't become part of the builder. Here's a snippet:the corresponding builder gets:
is this expected behavior? If not I'd be happy to help debug the issue. Thanks for reading and have a great day!