From 322aa52b55c4dd2a89a6162809a99072e08f0932 Mon Sep 17 00:00:00 2001 From: Andy Clement Date: Mon, 20 Apr 2020 17:49:01 -0700 Subject: [PATCH] polish --- docs/dist/doc/README-196.html | 9 ++++----- .../aspectj/runtime/reflect/RuntimePerformanceTest.java | 2 ++ 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

Now run it:


 $ 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
 

Available: 1.9.6 available 22-Apr-2020

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"); -- 2.39.5