Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: remove deprecated LSPDiagnosticsToMarkers(IProject, String) ctor #1188

Merged
merged 1 commit into from
Jan 16, 2025
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@
import org.eclipse.core.filebuffers.FileBuffers;
import org.eclipse.core.filebuffers.LocationKind;
import org.eclipse.core.resources.IMarker;
import org.eclipse.core.resources.IProject;
import org.eclipse.core.resources.IResource;
import org.eclipse.core.resources.WorkspaceJob;
import org.eclipse.core.runtime.CoreException;
Expand Down Expand Up @@ -82,18 +81,6 @@ public LSPDiagnosticsToMarkers(String serverId) {
this(serverId, null, null);
}

/**
*
* @param project
* @param serverId
* ignored
* @deprecated
*/
@Deprecated
public LSPDiagnosticsToMarkers(IProject project, String serverId) {
this(serverId);
}

@Override
public void accept(PublishDiagnosticsParams diagnostics) {
try {
Expand Down
Loading