aboutsummaryrefslogtreecommitdiffstats
path: root/weaver
diff options
context:
space:
mode:
authoraclement <aclement>2008-05-12 16:53:56 +0000
committeraclement <aclement>2008-05-12 16:53:56 +0000
commit53cab61a5ec49d528bd548d2c1be559f2c5677b4 (patch)
tree1b01afcce64da68ebbf0b3897aa6d2d18fa38742 /weaver
parent0d9e9230519499eef1e1cc3a8d7aec1413e8f8ee (diff)
downloadaspectj-53cab61a5ec49d528bd548d2c1be559f2c5677b4.tar.gz
aspectj-53cab61a5ec49d528bd548d2c1be559f2c5677b4.zip
231396: refactoring: CollectionUtil type removed
Diffstat (limited to 'weaver')
-rw-r--r--weaver/src/org/aspectj/weaver/bcel/LazyClassGen.java7
1 files changed, 4 insertions, 3 deletions
diff --git a/weaver/src/org/aspectj/weaver/bcel/LazyClassGen.java b/weaver/src/org/aspectj/weaver/bcel/LazyClassGen.java
index 79c572f86..1dbb48f54 100644
--- a/weaver/src/org/aspectj/weaver/bcel/LazyClassGen.java
+++ b/weaver/src/org/aspectj/weaver/bcel/LazyClassGen.java
@@ -56,7 +56,6 @@ import org.aspectj.apache.bcel.generic.annotation.AnnotationGen;
import org.aspectj.bridge.IMessage;
import org.aspectj.bridge.ISourceLocation;
import org.aspectj.bridge.SourceLocation;
-import org.aspectj.util.CollectionUtil;
import org.aspectj.weaver.AjAttribute;
import org.aspectj.weaver.BCException;
import org.aspectj.weaver.Member;
@@ -83,6 +82,8 @@ public final class LazyClassGen {
private static final int ACC_SYNTHETIC = 0x1000;
+ private static final String[] NO_STRINGS = new String[0];
+
int highestLineNumber = 0; // ---- JSR 45 info
private SortedMap /* <String, InlinedSourceFileInfo> */ inlinedFiles = new TreeMap();
@@ -850,7 +851,7 @@ public final class LazyClassGen {
Type.VOID,
"<clinit>",
new Type[0],
- CollectionUtil.NO_STRINGS,
+ NO_STRINGS,
this);
clinit.getBody().insert(InstructionConstants.RETURN);
methodGens.add(clinit);
@@ -867,7 +868,7 @@ public final class LazyClassGen {
Type.VOID,
NameMangler.AJC_PRE_CLINIT_NAME,
new Type[0],
- CollectionUtil.NO_STRINGS,
+ NO_STRINGS,
this);
ajcClinit.getBody().insert(InstructionConstants.RETURN);
methodGens.add(ajcClinit);