diff options
author | acolyer <acolyer> | 2004-08-19 16:38:34 +0000 |
---|---|---|
committer | acolyer <acolyer> | 2004-08-19 16:38:34 +0000 |
commit | e41a5dd70aa2c92c190f0c42bb72243db6748373 (patch) | |
tree | 6b6d731b169a77cff7474a44cdfad115e6d143cd /tests/design | |
parent | dbe1024f852c600d2752e5f39eb31ca4f5d72de9 (diff) | |
download | aspectj-e41a5dd70aa2c92c190f0c42bb72243db6748373.tar.gz aspectj-e41a5dd70aa2c92c190f0c42bb72243db6748373.zip |
fix for Bugzilla Bug 37020
wrong line for method execution join point
Diffstat (limited to 'tests/design')
-rw-r--r-- | tests/design/sourceLines/TestSourceLines.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/design/sourceLines/TestSourceLines.java b/tests/design/sourceLines/TestSourceLines.java index 8a97048e8..f3613532c 100644 --- a/tests/design/sourceLines/TestSourceLines.java +++ b/tests/design/sourceLines/TestSourceLines.java @@ -41,7 +41,7 @@ aspect CheckLineNumbers { // L39 declare warning : execution(* TestSourceLines.*(..)) : "method execution"; declare warning : execution(TestSourceLines.new(..)) : "cons execution"; declare warning : staticinitialization(*) : "static init"; - declare warning : initialization(*.new(..)) : "init"; + declare warning : initialization(*.new(..)) : "just-init"; declare warning : preinitialization(*.new(..)) : "pre-init"; before() : execution(* TestSourceLines.*(..)) { // L47 |