Bug 31809

Summary: Eclipse reports error in task view - but it's no error!
Product: [Eclipse Project] JDT Reporter: Martin Elsässer <martin>
Component: CoreAssignee: JDT-Core-Inbox <jdt-core-inbox>
Status: RESOLVED DUPLICATE QA Contact:
Severity: normal    
Priority: P3    
Version: 2.1   
Target Milestone: 2.1 RC1   
Hardware: PC   
OS: Windows NT   
Whiteboard:

Description Martin Elsässer CLA 2003-02-13 14:36:10 EST
Hello,

when compiling the following two classes, Eclipse 2.1 M5 reports an error in 
the task view, while Eclipse 2.1 M4 does't. Compiling with Ant throws no 
errors. I use J2SDK 1.4.1_01, Windows NT (SP6).

Greetings

      Martin

----------------------------------
package pack1;

public class A
{
   abstract void myMethod();
};

----------------------------------

package pack2;

import pack1.A;

public class B extends A
{
   public void myMethod()
   {
      System.out.println("This is a method with advanced visibility!");
   }
};
Comment 1 Olivier Thomann CLA 2003-02-13 14:41:37 EST
Looks like a duplicate of bug 31398. Please try the patch from the JDT/Core dev
page.
See
http://dev.eclipse.org/viewcvs/index.cgi/%7Echeckout%7E/jdt-core-home/r2.1/main.html#updates

This link might be split by bugzilla. Let us know if this fixes the problem.
Comment 2 Philipe Mulet CLA 2003-02-14 04:56:41 EST
Duplicate

*** This bug has been marked as a duplicate of 31398 ***