I have the following legacy class that I can not change:
import java.util.logging.Logger;
public class SuperClass
{
   // ...
   public Logger getLogger(Class c) {
      // ...
   }
}
I want to override the getLogger method in my class. Is it possible to do it without raw type usage?
 
     
    