Hi all

> Build 611, jdk 1.3.1, Win2K

When trying to inspect an abstract class, Code Inspector tells me that the
abstract methods defined in the class
may be made private, although an implementation of this class and method
exist in the same package :

-- I have
public class AbstractMediaServer implements MediaServer {
    public abstract MediaSession createNewSession();
}

-- and
public class FileMediaServer extends AbstractMediaServer {
    public MediaSession createNewSession() {//do it}
}

The Code Inspector suggests that AbstractMediaServer.createNewSession() can
be made private.
Obviously, it's a bizarre idea !


Hope this helps
Denis Balazuc



_______________________________________________
Eap-list mailing list
[EMAIL PROTECTED]
http://www.intellij.com/mailman/listinfo/eap-list

Reply via email to