I have a old code which is like this-
Public class ABC{
.
.
.
Public static class InnerClass{
Public static method do something(){
}
}
}
I want to override do something() method in the implemented class.
What's the optimized way to do this?