Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
12.0
-
None
-
None
Description
Custom hint, options show it as "WARNING", but no badges. Regression from 11.3.
"Refactor > Inspect&Transform" work with it.
Given this file
package play; import javax.swing.text.Segment; public class NewClass { void t(Segment s, int col) { char c; c = s.array[col + s.offset]; c = s.array[s.offset + col]; } }
and in userdir/config/rules
<!description="seg.array TO seg.charAt"> $seg.array[$val + $seg.offset] :: $seg instanceof javax.swing.text.Segment => $seg.charAt($val) ;; $seg.array[$seg.offset + $val] :: $seg instanceof javax.swing.text.Segment => $seg.charAt($val) ;;