diff options
author | Andy Clement <aclement@pivotal.io> | 2020-04-20 17:49:01 -0700 |
---|---|---|
committer | Andy Clement <aclement@pivotal.io> | 2020-04-20 17:49:01 -0700 |
commit | 322aa52b55c4dd2a89a6162809a99072e08f0932 (patch) | |
tree | 7a905545bedb23bcf5c7f56cd2e173e44d143e76 | |
parent | 4471ba76ac755b504d99e514a1cf5a375e7d02d1 (diff) | |
download | aspectj-322aa52b55c4dd2a89a6162809a99072e08f0932.tar.gz aspectj-322aa52b55c4dd2a89a6162809a99072e08f0932.zip |
polish
-rw-r--r-- | docs/dist/doc/README-196.html | 9 | ||||
-rw-r--r-- | runtime/src/test/java/org/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 <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"); |