Skip to content

Instantly share code, notes, and snippets.

@grim13b
Created August 23, 2016 17:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save grim13b/086b4294888e594ebbfb45546707b5a1 to your computer and use it in GitHub Desktop.
Save grim13b/086b4294888e594ebbfb45546707b5a1 to your computer and use it in GitHub Desktop.
Lombok Conflict
class Application {
fun doExecute(model: DataModel){
model.id = 1
model.description = "hoge"
}
}
fun main(args: Array<String>) {
val app = Application()
app.doExecute(DataModel())
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment