You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

README-1.7.4.adoc 1.1KB

12345678910111213141516171819202122232425262728293031323334
  1. = AspectJ 1.7.4
  2. _© Copyright 2013 Contributors. All rights reserved._
  3. The list of resolved issues in 1.7.4 is available
  4. https://bugs.eclipse.org/bugs/buglist.cgi?query_format=advanced;bug_status=RESOLVED;bug_status=VERIFIED;bug_status=CLOSED;product=AspectJ;target_milestone=1.7.4;[here]
  5. _Release info: 1.7.4 available 24-Oct-2013_
  6. *Notes*
  7. * This release includes an important fix for using loadtime weaving in a
  8. JVM where JMX is turned on
  9. (https://bugs.eclipse.org/bugs/show_bug.cgi?id=415266[415266])
  10. * There are some new message insert keys usable in declare error/warning
  11. (https://bugs.eclipse.org/bugs/show_bug.cgi?id=420210[420210]) The new
  12. keys are:
  13. +
  14. [source, java]
  15. ....
  16. joinpoint.enclosingclass // Bar
  17. joinpoint.enclosingmember // void Bar.foo(String)
  18. joinpoint.enclosingmember.name // foo
  19. ....
  20. +
  21. All keys are case insensitive.
  22. * It is now possible to specify individual xlint settings without
  23. needing to supply a file
  24. (https://bugs.eclipse.org/bugs/show_bug.cgi?id=419279[419279])
  25. +
  26. [source, text]
  27. ....
  28. ajc -Xlint:adviceDidNotMatch=error,noGuardForLazyTjp=ignore Foo.java
  29. ....