Quick Fix to Implement Methods of an interface when class implementing methods is an inner class stubs methods with private modifier.e

Issue #1748 resolved
Mike Wannamaker created an issue

Below is an example if you have the inner class implement an interface and you quick fix stub all the methods they are marked as private as below, but they should be marked as public because methods that implement an interface must be public or global.

public class OuterClass {
   class A implements IRunnable {

      private Object run() {
         return null;
      }
   }
}

Comments (2)

  1. Log in to comment