You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

123456789101112131415
  1. import org.aspectj.lang.annotation.SuppressAjWarnings;
  2. privileged aspect BugThisJoinPoint {
  3. @SuppressAjWarnings("adviceDidNotMatch")
  4. void around(): execution(boolean forceFocus ()) {
  5. thisEnclosingJoinPointStaticPart.getSignature();
  6. }
  7. @SuppressAjWarnings("adviceDidNotMatch")
  8. void around(): execution(boolean forceFocus ()) {
  9. thisJoinPointStaticPart.getSignature();
  10. }
  11. }