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
The fragmentation.Partition.Select still calls safeAccess, which probes a slice and recovers from panic to check whether an index exists. Replace it with direct index >= 0 && index < len(lines) checks while preserving the current error messages.
The
fragmentation.Partition.Selectstill callssafeAccess, which probes a slice and recovers from panic to check whether an index exists. Replace it with directindex >= 0 && index < len(lines)checks while preserving the current error messages.