raphw/byte-buddy

why is the byte-buudy AgentBuilder source code so long ?

Closed this issue · 2 comments

No offense meant , why is the byte-buudy AgentBuilder source code so long ? it's 12000+ line. Is there any special reason for it?

It's because Byte Buddy uses nested classes for additional expressiveness. This way, it is AgentBuilder.Default, for example instead of DefaultAgentBuilder. This allows your IDE to give you additional help.

thanks