| Summary: | JSONException cannot be resolved to a type | ||
|---|---|---|---|
| Product: | River-Crossing-Puzzle-Solver | Reporter: | tsunychau2-c |
| Component: | Solver Mode | Assignee: | tsunychau2-c |
| Status: | RESOLVED FIXED | ||
| Severity: | major | ||
| Priority: | Highest | ||
| Version: | v0.9.5 | ||
| Hardware: | PC | ||
| OS: | Mac OS | ||
|
Description
tsunychau2-c
2022-11-05 21:02:00 HKT
Bug is confirmed. It seems that we does not include the JSON library. Import org.json.JSONException in Puzzle.java Modification of code: package Puzzle; import java.io.IOException; import java.nio.file.Files; import java.nio.file.Path; import java.util.ArrayList; import java.util.HashMap; import java.util.HashSet; import org.json.JSONArray; import org.json.JSONException; import org.json.JSONObject; import Puzzle.Logic.*; |