This repository was archived by the owner on Jun 18, 2026. It is now read-only.
Commit 06bf6cd
committed
refactor: fix broken Edge constructor in RandomGraphGenerator, remove misplaced test file
- RandomGraphGenerator.newEdge() was calling Edge(int, int, int, String)
which doesn't exist — Edge only has Edge() and Edge(String, String, String)
constructors. This would cause a compilation error. Fixed to use the
correct 3-arg String constructor with unique generated identifiers.
- Removed GraphPathExplorerTest.java from src/gvisual/ — test files belong
in test/gvisual/ where the proper JUnit version already exists. Having a
standalone test runner in the production source tree bloats the compiled
artifact and confuses the build.1 parent 19d034a commit 06bf6cd
2 files changed
Lines changed: 12 additions & 485 deletions
0 commit comments