Skip to content

Commit

Permalink
Merge pull request #8 from DataFlowAnalysis/bug-fixes-from-cyclic-graphs
Browse files Browse the repository at this point in the history
Faulty removal of "_"
  • Loading branch information
uuqjz authored Jun 29, 2024
2 parents c46e6bb + f8b5de9 commit 013e3f7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public record InformationFlow(String sender,
public InformationFlow {
stereotypes = stereotypes.stream()
.map(stereotype -> stereotype.trim()
.replaceAll("[^a-zA-Z0-9_]", ""))
.replaceAll("[^a-zA-Z0-9]", ""))
.collect(Collectors.toList());
}
}

0 comments on commit 013e3f7

Please sign in to comment.