Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion rascal-lsp/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
<dependency>
<groupId>org.rascalmpl</groupId>
<artifactId>rascal</artifactId>
<version>0.41.0-RC73</version>
<version>0.41.0-RC75</version>
</dependency>
<!-- Rascal tests require JUnit 4 -->
<dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -148,16 +148,6 @@ public void unregisterLanguage(IConstructor language) {
server.receiveUnregisterLanguage(LanguageParameter.fromRascalValue(language));
}

@Override
public void applyDocumentsEdits(IList edits) {
server.applyDocumentEdits(new DocumentEditsParameter(edits));
}

@Override
public void applyFileSystemEdits(IList edits) {
applyDocumentsEdits(edits);
}

@Override
public void jobStart(String name, int workShare, int totalWork) {
monitor.jobStart(name, workShare, totalWork);
Expand Down
Loading