Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

12345678910
  1. import org.aspectj.lang.annotation.SuppressAjWarnings;
  2. privileged aspect BugThisJoinPoint {
  3. @SuppressAjWarnings("adviceDidNotMatch")
  4. void around(): execution(boolean forceFocus ()) {
  5. thisJoinPoint.getThis();
  6. }
  7. }