Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

README-1.9.4.adoc 1.3KB

12345678910111213141516171819202122232425
  1. = AspectJ 1.9.4
  2. _© Copyright 2019 Contributors. All rights reserved._
  3. The full list of resolved issues in 1.9.4 is available
  4. https://bugs.eclipse.org/bugs/buglist.cgi?bug_status=RESOLVED&bug_status=VERIFIED&bug_status=CLOSED&f0=OP&f1=OP&f3=CP&f4=CP&j1=OR&list_id=16866879&product=AspectJ&query_format=advanced&target_milestone=1.9.4[here]
  5. _Release info: 1.9.4 available 10-May-2019_
  6. AspectJ 1.9.4 has a couple of important fixes in it:
  7. * Due to the new maven build process being used to build release
  8. artifacts for the first time, there were errors in the _aspectjweaver_ JAR
  9. that affected the ability to use it on the command line as an agent,
  10. this is now fixed.
  11. * A number of users were noticing a `ClassCastException` problem, which I
  12. believe was due to trying to run AspectJ on one level of the JDK whilst
  13. targeting another. This can happen quite easily in Eclipse if running
  14. your Eclipse on Java 8 but developing projects targeting Java 11. The
  15. class cast is because Java8 couldn't understand the packaging of system
  16. classes post Java9 and so couldn't find `java.lang.Object`. This has now
  17. all been tidied up and should work much better. More details in
  18. https://bugs.eclipse.org/bugs/show_bug.cgi?id=546807[546807], thanks to
  19. Denys Khanzhyiev for some tips on getting to the right solution.