why is the byte-buudy AgentBuilder source code so long ?
Closed this issue · 2 comments
jiangyunpeng commented
No offense meant , why is the byte-buudy AgentBuilder source code so long ? it's 12000+ line. Is there any special reason for it?
raphw commented
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.
jiangyunpeng commented
thanks