No need for a "relativeTo" folder for parsing sources

This commit is contained in:
aboyko
2023-12-21 18:22:30 -05:00
parent 1a90281e65
commit 7a04b3ee28
4 changed files with 13 additions and 14 deletions

View File

@@ -460,7 +460,7 @@ public class RewriteRecipeRepository {
List<Result> results = reciperun.getChangeset().getAllResults();
ChangeAnnotation changeAnnotation = new ChangeAnnotation("Apply Recipe '" + r.getDisplayName() + "'");
changeAnnotation.setNeedsConfirmation(needsConfirmation);
return ORDocUtils.createWorkspaceEdit(absoluteProjectDir, server.getTextDocumentService(), results, changeAnnotation);
return ORDocUtils.createWorkspaceEdit(server.getTextDocumentService(), results, changeAnnotation);
}
private void reportParseErrors(List<ParseError> parseErrors) {