From 2a002f6542f6401c3b824930c5a0b2df0ef1a277 Mon Sep 17 00:00:00 2001 From: aclement Date: Thu, 29 Jan 2009 06:06:57 +0000 Subject: [PATCH] 194314: updated based on extra param --- .../aspectj/weaver/bcel/MoveInstructionsWeaveTestCase.java | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/weaver/testsrc/org/aspectj/weaver/bcel/MoveInstructionsWeaveTestCase.java b/weaver/testsrc/org/aspectj/weaver/bcel/MoveInstructionsWeaveTestCase.java index 45bd977a4..0155cb03c 100644 --- a/weaver/testsrc/org/aspectj/weaver/bcel/MoveInstructionsWeaveTestCase.java +++ b/weaver/testsrc/org/aspectj/weaver/bcel/MoveInstructionsWeaveTestCase.java @@ -13,6 +13,7 @@ package org.aspectj.weaver.bcel; import java.io.IOException; +import java.util.ArrayList; import org.aspectj.apache.bcel.generic.InstructionFactory; import org.aspectj.weaver.NameMangler; @@ -38,7 +39,7 @@ public class MoveInstructionsWeaveTestCase extends WeaveTestCase { BcelShadow shadow = (BcelShadow) s; LazyMethodGen newMethod = shadow.extractShadowInstructionsIntoNewMethod(NameMangler.getExtractableName(shadow .getSignature()) - + "_extracted", 0, this.getSourceLocation()); + + "_extracted", 0, this.getSourceLocation(), new ArrayList()); shadow.getRange().append(shadow.makeCallToCallback(newMethod)); if (!shadow.isFallsThrough()) { @@ -64,7 +65,7 @@ public class MoveInstructionsWeaveTestCase extends WeaveTestCase { BcelShadow shadow = (BcelShadow) s; LazyMethodGen newMethod = shadow.extractShadowInstructionsIntoNewMethod(NameMangler.getExtractableName(shadow .getSignature()) - + "_extracted" + counter++, 0, this.getSourceLocation()); + + "_extracted" + counter++, 0, this.getSourceLocation(), new ArrayList()); shadow.getRange().append(shadow.makeCallToCallback(newMethod)); if (!shadow.isFallsThrough()) { -- 2.39.5