You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix(errorprone): flag Math.class literal to close reflection bypass
matchMemberSelect only handled VarSymbol members, so the class literal
Math.class (and java.lang.Math.class) resolved to the Math ClassSymbol
and slipped through, leaving a reflective back door to java.lang.Math.
Detect .class selects whose qualifier is java.lang.Math explicitly.
Addresses codeant-ai review on ForbidJavaLangMath.java.
0 commit comments