java - Moving an inner class to another outer class using bcel -
i want move inner class outer class outer class. possible using bcel? e.g:
class outer1{ --- class inner{ ---- } }
will converted to:
class outer2{ --- class inner{ ---- } }
and
class outer1{ ---- }
thanks.
Comments
Post a Comment