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;
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();
Type.VOID,
"<clinit>",
new Type[0],
- CollectionUtil.NO_STRINGS,
+ NO_STRINGS,
this);
clinit.getBody().insert(InstructionConstants.RETURN);
methodGens.add(clinit);
Type.VOID,
NameMangler.AJC_PRE_CLINIT_NAME,
new Type[0],
- CollectionUtil.NO_STRINGS,
+ NO_STRINGS,
this);
ajcClinit.getBody().insert(InstructionConstants.RETURN);
methodGens.add(ajcClinit);