Skip to content

Commit

Permalink
fixed type check error
Browse files Browse the repository at this point in the history
  • Loading branch information
jurgenvinju committed Jun 12, 2024
1 parent 93508ea commit 90b0a71
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/org/rascalmpl/library/lang/rascal/upgrade/UpgradeBase.rsc
Original file line number Diff line number Diff line change
Expand Up @@ -40,11 +40,11 @@ void updateProject(str projectName) {

void updatePathConfig(PathConfig pcfg) {
for (root <- pcfg.srcs) {
update(root);
updateFolder(root);
}
}

void update(loc root) {
void updateFolder(loc root) {
set[loc] ms = find(root, "rsc");

job("Updating <root>", bool (void (str, int) step) {
Expand Down

0 comments on commit 90b0a71

Please sign in to comment.