Browse Source

temp fix to allow parserexceptions out...

extensions
aclement 17 years ago
parent
commit
2139d996eb
1 changed files with 2 additions and 1 deletions
  1. 2
    1
      weaver/src/org/aspectj/weaver/bcel/AtAjAttributes.java

+ 2
- 1
weaver/src/org/aspectj/weaver/bcel/AtAjAttributes.java View File

} catch (ParserException e) { } catch (ParserException e) {
reportError("Invalid pointcut '" + pointcutString + "': " + e.toString() + reportError("Invalid pointcut '" + pointcutString + "': " + e.toString() +
(e.getLocation()==null?"":" at position "+e.getLocation().getStart()), struct); (e.getLocation()==null?"":" at position "+e.getLocation().getStart()), struct);
return null;
throw e;
// return null;
} }
} }

Loading…
Cancel
Save