ASM ClassAdapter.

我去用5.0版本的asm时,提示ClassAdapter不存在,用google搜索是发现是4.0以后移除了ClassAdapter,用ClassVisitor代替
I have a very small amount of ASM code.

It uses ClassAdapter, which is now gone from ASM 4.0.

What's the standard approach to rectifying this when migrating to 4.0?

ClassVisitor is now a class and acts as the old ClassAdapter.

你可能感兴趣的:(ASM ClassAdapter.)