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
{{ message }}
This repository was archived by the owner on Apr 5, 2026. It is now read-only.
As a developer
I want proper CSV parsing that handles quoted fields
So that CSV files are parsed correctly
Current Behavior
Naive split on commas breaks fields like
"Smith, John".Location:
src/java/CSVHandler.javaline 14Expected Behavior
Handle CSV quoting rules properly.
Acceptance Criteria
Example Issue
Gets split incorrectly into 3 fields instead of 2.