A lot of things.

- Change tests directory location.
- Fix Merlu CSV UTF8 encoding.
- Make classes for ParasitesPeru2021.csv Parsing.
This commit is contained in:
2026-03-31 19:00:19 +02:00
parent 2bf0ca34df
commit 3a6968f40f
17 changed files with 441 additions and 59 deletions

View File

@@ -9,5 +9,7 @@ import java.util.HashSet;
*/
public interface DataParsing {
public HashSet<Poisson> parse(RawData data) throws RawDataOverflow;
public static HashSet<Poisson> parse(RawData data) throws RawDataOverflow {
return null;
}
}