From e41a5dd70aa2c92c190f0c42bb72243db6748373 Mon Sep 17 00:00:00 2001 From: acolyer Date: Thu, 19 Aug 2004 16:38:34 +0000 Subject: [PATCH] fix for Bugzilla Bug 37020 wrong line for method execution join point --- tests/design/sourceLines/TestSourceLines.java | 2 +- tests/src/org/aspectj/systemtest/ajc121/ajc121-tests.xml | 8 ++++---- 2 files changed, 5 insertions(+), 5 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 diff --git a/tests/src/org/aspectj/systemtest/ajc121/ajc121-tests.xml b/tests/src/org/aspectj/systemtest/ajc121/ajc121-tests.xml index 94c9db44f..9ec3782b4 100644 --- a/tests/src/org/aspectj/systemtest/ajc121/ajc121-tests.xml +++ b/tests/src/org/aspectj/systemtest/ajc121/ajc121-tests.xml @@ -362,18 +362,18 @@ - + - + - + - + -- 2.39.5