aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--docs/dist/doc/README-196.html9
-rw-r--r--runtime/src/test/java/org/aspectj/runtime/reflect/RuntimePerformanceTest.java2
2 files changed, 6 insertions, 5 deletions
diff --git a/docs/dist/doc/README-196.html b/docs/dist/doc/README-196.html
index b9dbaea4a..6d47a926c 100644
--- a/docs/dist/doc/README-196.html
+++ b/docs/dist/doc/README-196.html
@@ -57,11 +57,10 @@ $ ajc --enable-preview -14 Person.java UsingPersonRecord.java TraceRecordCompone
<p>Now run it:
<pre><code>
$ java --enable-preview UsingPersonRecord
-This
-is
-on
-multiple
-lines
+execution(String Person.toString())
+Person[firstName=A, lastName=B, age=99]
+execution(String Person.firstName())
+A
</code></pre>
<p>Available: 1.9.6 available 22-Apr-2020</p>
diff --git a/runtime/src/test/java/org/aspectj/runtime/reflect/RuntimePerformanceTest.java b/runtime/src/test/java/org/aspectj/runtime/reflect/RuntimePerformanceTest.java
index cc956477e..fb51e20be 100644
--- a/runtime/src/test/java/org/aspectj/runtime/reflect/RuntimePerformanceTest.java
+++ b/runtime/src/test/java/org/aspectj/runtime/reflect/RuntimePerformanceTest.java
@@ -66,6 +66,8 @@ public class RuntimePerformanceTest extends TestCase {
task.cancel();
}
+ public void testempty() {}
+
// No longer valid with Java being so quick now...
public void xtestToString () {
Signature signature = makeMethodSig("test");