Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[aspectj-users] AJDT bug?

Hi all!

I came across what seems to be a bug in AJDT. If you build a project containing a single Test aspect

public aspect Test {
  private pointcut none();
  before(): none() {
  Class<?>[] x;
  }
  before() : none() {}
}

then several errors are shown in the editor window, though none are shown in the package explorer.

Any ideas?

Regards,

Manuel

--
http://www.google.com/profiles/MMSequeira
Sent from Lisboa, Portugal

Back to the top