Sfoglia il codice sorgente

diagnostics for 278496

tags/V1_6_5
aclement 15 anni fa
parent
commit
fd85fe1044
1 ha cambiato i file con 5 aggiunte e 1 eliminazioni
  1. 5
    1
      asm/src/org/aspectj/asm/internal/ProgramElement.java

+ 5
- 1
asm/src/org/aspectj/asm/internal/ProgramElement.java Vedi File

@@ -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…
Annulla
Salva