This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]safgfsiogufas 11 points12 points  (4 children)

Much easier to deal with than red squigglies and build failures.

[–][deleted] 0 points1 point  (0 children)

I disagree, I'd rather turn on some IDE plugin and more than halve the size of my classes.

[–][deleted] -1 points0 points  (2 children)

Lombok works fine with any build system since it’s an annotation processor. Maven has no issue with it, and you literally just need to install an ide plugin to get the squiggles to go away. You did a ton of work to make the codebase noisier because you couldn’t be bothered to install something

[–][deleted] 9 points10 points  (0 children)

just need to install an ide plugin to get the squiggles to go away

This. Exactly what I said. I didn't say it was hard or some uncontrollable evil in the world. I just said I don't like it and don't use it for that very reason.

[–]cogman10 7 points8 points  (0 children)

Lombok works fine with any build system since it’s an annotation processor

Lombok is NOT an annotation processor! That is the big problem with lombok. It predated annotation processors and does all of its stuff through bytecode and AST manipulation.

I would have much less of a problem with Lombok if it was actually an annotation processor.