소스 검색

diagnostics for 278496

tags/V1_6_5
aclement 15 년 전
부모
커밋
fd85fe1044
1개의 변경된 파일5개의 추가작업 그리고 1개의 파일을 삭제
  1. 5
    1
      asm/src/org/aspectj/asm/internal/ProgramElement.java

+ 5
- 1
asm/src/org/aspectj/asm/internal/ProgramElement.java 파일 보기

@@ -553,7 +553,11 @@ public class ProgramElement implements IProgramElement {
if (asm == null && name.equals("<build to view structure>")) {
handle = "<build to view structure>";
} else {
handle = asm.getHandleProvider().createHandleIdentifier(this);
try {
handle = asm.getHandleProvider().createHandleIdentifier(this);
} catch (ArrayIndexOutOfBoundsException aioobe) {
throw new RuntimeException("AIOOBE whilst building handle for " + this, aioobe);
}
}
}
return handle;

Loading…
취소
저장