I am currently profiling my application and notice that a lot of time is spent by Seam doing bijection for calls to simple setters and getters for (not bijected) fields.
This of course is unnecessary and Seam includes the @BypassInterceptors annotation to prevent this.
I would be really nice if there were an inspection that said "Simple getter/setter can be annotated with "@BypassInterceptors".
OTOH hand it would be fantastic if IDEA could warn that a method annotated with @BypassIntereptors uses any feature that works only with Seam's interception in place, but that's a much harder problem.
That simple logic does not work - I'll try to research what the exact conditions are to allow @BypassInterceptors.