diff options
author | jhugunin <jhugunin> | 2002-12-17 03:53:16 +0000 |
---|---|---|
committer | jhugunin <jhugunin> | 2002-12-17 03:53:16 +0000 |
commit | 3f35d3b52091aaf3392c64a7e5f58f8625edad75 (patch) | |
tree | 81093998885e65bad1a87396ed2e20614431e790 /tests/errors | |
parent | f68a0546db571904177e905ba81735bf7f81c9c9 (diff) | |
download | aspectj-3f35d3b52091aaf3392c64a7e5f58f8625edad75.tar.gz aspectj-3f35d3b52091aaf3392c64a7e5f58f8625edad75.zip |
fixed old syntax
Diffstat (limited to 'tests/errors')
-rw-r--r-- | tests/errors/BadTypeName.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/errors/BadTypeName.java b/tests/errors/BadTypeName.java index 3f8d2fcdd..ce22f9146 100644 --- a/tests/errors/BadTypeName.java +++ b/tests/errors/BadTypeName.java @@ -1,5 +1,5 @@ aspect BadTypeName { - static pointcut prints(Foo f): call(void System.out.println(..)); + pointcut prints(Foo f): call(void System.out.println(..)); Foo x = null; |