Bug 31809 - Eclipse reports error in task view - but it's no error!
Summary: Eclipse reports error in task view - but it's no error!
Status: RESOLVED DUPLICATE of bug 31398
Alias: None
Product: JDT
Classification: Eclipse Project
Component: Core (show other bugs)
Version: 2.1   Edit
Hardware: PC Windows NT
: P3 normal (vote)
Target Milestone: 2.1 RC1   Edit
Assignee: JDT-Core-Inbox CLA
QA Contact:
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2003-02-13 14:36 EST by Martin Elsässer CLA
Modified: 2003-02-14 04:56 EST (History)
0 users

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
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 ***