Skip to content

Commit

Permalink
[Bugfix]: QanaryComponent name usage changed to prefixedName
Browse files Browse the repository at this point in the history
  • Loading branch information
dschiese committed Jul 12, 2024
1 parent 49707e3 commit de452f0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -515,7 +515,7 @@ public String createInputExplanation(String graph, QanaryComponent component) th
List<String> explanationsForQueries = new ArrayList<>();
ResultSet results = qanaryRepository.selectWithResultSet(queryTemplate);
if (!results.hasNext())
return "The component " + component + " hasn't used any queries.";
return "The component " + component.getPrefixedComponentName() + " hasn't used any queries.";
while (results.hasNext()) {
QuerySolution currentSolution = results.nextSolution();
try {
Expand Down

0 comments on commit de452f0

Please sign in to comment.