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