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.6.6.adoc 2.1KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. = AspectJ 1.6.6
  2. _© Copyright 2009 Contributors. All rights reserved._
  3. [[bugsfixed]]
  4. == Bugs fixed
  5. The complete list of issues resolved for AspectJ 1.6.6 can be found with
  6. this bugzilla query:
  7. * https://bugs.eclipse.org/bugs/buglist.cgi?query_format=advanced&short_desc_type=allwordssubstr&short_desc=&product=AspectJ&target_milestone=1.6.6&long_desc_type=allwordssubstr&long_desc=&bug_file_loc_type=allwordssubstr&bug_file_loc=&status_whiteboard_type=allwordssubstr&status_whiteboard=&keywords_type=allwords&keywords=&bug_status=RESOLVED&bug_status=VERIFIED&bug_status=CLOSED&emailtype1=substring&email1=&emailtype2=substring&email2=&bugidtype=include&bug_id=&votes=&chfieldfrom=&chfieldto=Now&chfieldvalue=&cmdtype=doit&order=Reuse+same+sort+as+last+time&field0-0-0=noop&type0-0-0=noop&value0-0-0=[Bugs
  8. resolved]
  9. '''''
  10. == Changes
  11. *Java5*
  12. The features of Java5 (generics, autoboxing, covariance, etc) are being
  13. exploited in the AspectJ codebase. This does not in any way change the
  14. generated code or supported source code, or the dependencies that code
  15. has, but it *does* mean that AspectJ requires Java5 in order to run. The
  16. ability to use typed collections has already flushed out a few issues
  17. within the codebase, improving the quality of AspectJ.
  18. +
  19. *Closing streams*
  20. Some routes through AspectJ were leaving inputstreams open and this has
  21. now been fixed. For example if supplying a user written configuration
  22. file for Lint options. Thanks to Michael Pradel for supplying patches to
  23. fix these issues.
  24. +
  25. *Concurrency (281654)*
  26. Fix to address a problem seen when using the weaver in a highly
  27. concurrent environment. Thanks to Kristian Rosenvold for the patch.
  28. +
  29. *Incremental compilation*
  30. A few fixes to problems seen only on incremental builds, problem areas
  31. included:
  32. * problems when fully qualifying the target type in an intertype
  33. declaration (269652)
  34. * problems when using annotation style pointcuts and reference pointcuts
  35. together (286341)
  36. +
  37. *JavadocRunner in NetBeans*
  38. Fixed by a patch from Joseph A. Levin - thanks!
  39. +
  40. *Various fixes/enhancements to the structure model to fix issues with
  41. feedback on weaving in AJDT*