Skip to content

Commit

Permalink
bump lsp4j dep
Browse files Browse the repository at this point in the history
  • Loading branch information
softwareCobbler committed Jun 5, 2024
1 parent 27ed577 commit 01938bf
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 13 deletions.
3 changes: 2 additions & 1 deletion luceedebug/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,8 @@ dependencies {
compileOnly(files("extern/5.3.9.158-SNAPSHOT.lco"))

// https://mvnrepository.com/artifact/org.eclipse.lsp4j/org.eclipse.lsp4j.debug
implementation("org.eclipse.lsp4j:org.eclipse.lsp4j.debug:0.15.0")
implementation("org.eclipse.lsp4j:org.eclipse.lsp4j.debug:0.23.1")

}

java {
Expand Down
13 changes: 1 addition & 12 deletions luceedebug/src/main/java/luceedebug/DapServer.java
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,7 @@
import org.eclipse.lsp4j.jsonrpc.messages.ResponseError;
import org.eclipse.lsp4j.jsonrpc.messages.ResponseErrorCode;
import org.eclipse.lsp4j.jsonrpc.services.JsonRequest;
import org.eclipse.xtext.xbase.lib.Pure;
import org.eclipse.xtext.xbase.lib.util.ToStringBuilder;
import org.eclipse.lsp4j.jsonrpc.util.ToStringBuilder;

import com.sun.jdi.ObjectCollectedException;

Expand Down Expand Up @@ -475,15 +474,13 @@ public int getVariablesReference() {
}

@Override
@Pure
public String toString() {
ToStringBuilder b = new ToStringBuilder(this);
b.add("variablesReference", this.variablesReference);
return b.toString();
}

@Override
@Pure
public boolean equals(final Object obj) {
if (this == obj) {
return true;
Expand Down Expand Up @@ -512,15 +509,13 @@ public void setContent(final String htmlDocument) {
}

@Override
@Pure
public String toString() {
ToStringBuilder b = new ToStringBuilder(this);
b.add("content", this.content);
return b.toString();
}

@Override
@Pure
public boolean equals(final Object obj) {
if (this == obj) {
return true;
Expand Down Expand Up @@ -582,7 +577,6 @@ public void setPathTransforms(String[] v) {
}

@Override
@Pure
public String toString() {
ToStringBuilder b = new ToStringBuilder(this);
b.add("canonicalFilenames", this.canonicalFilenames);
Expand All @@ -592,7 +586,6 @@ public String toString() {
}

@Override
@Pure
public boolean equals(final Object obj) {
if (this == obj) {
return true;
Expand Down Expand Up @@ -667,15 +660,13 @@ public void setBreakpoints(int v) {
}

@Override
@Pure
public String toString() {
ToStringBuilder b = new ToStringBuilder(this);
b.add("variablesReference", this.variablesReference);
return b.toString();
}

@Override
@Pure
public boolean equals(final Object obj) {
if (this == obj) {
return true;
Expand Down Expand Up @@ -708,15 +699,13 @@ public void setPath(String path) {
}

@Override
@Pure
public String toString() {
ToStringBuilder b = new ToStringBuilder(this);
b.add("path", this.path);
return b.toString();
}

@Override
@Pure
public boolean equals(final Object obj) {
if (this == obj) {
return true;
Expand Down

0 comments on commit 01938bf

Please sign in to comment.