Skip to content

Commit

Permalink
Merge pull request #617 from eclipse/cd_cleanups
Browse files Browse the repository at this point in the history
 fix some javadocs
  • Loading branch information
cdietrich committed May 14, 2022
2 parents b96a7e4 + bef461f commit 8821222
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
import org.eclipse.lsp4j.debug.CapabilitiesEventArguments;
import org.eclipse.lsp4j.debug.ContinuedEventArguments;
import org.eclipse.lsp4j.debug.ExitedEventArguments;
import org.eclipse.lsp4j.debug.InitializeRequestArguments;
import org.eclipse.lsp4j.debug.InvalidatedEventArguments;
import org.eclipse.lsp4j.debug.LoadedSourceEventArguments;
import org.eclipse.lsp4j.debug.MemoryEventArguments;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ import org.eclipse.lsp4j.generator.JsonRpcData
import org.eclipse.lsp4j.jsonrpc.json.adapters.JsonElementTypeAdapter
import org.eclipse.lsp4j.jsonrpc.messages.Either
import org.eclipse.lsp4j.jsonrpc.messages.Either3
import org.eclipse.lsp4j.jsonrpc.messages.ResponseErrorCode
import org.eclipse.lsp4j.jsonrpc.messages.Tuple
import org.eclipse.lsp4j.jsonrpc.validation.NonNull
import org.eclipse.lsp4j.util.Preconditions
Expand Down Expand Up @@ -1784,7 +1785,7 @@ class SemanticTokensCapabilities extends DynamicRegistrationCapabilities {
/**
* Whether the client allows the server to actively cancel a
* semantic token request, e.g. supports returning
* {@link org.eclipse.lsp4j.jsonrpc.messages.ResponseErrorCode#ServerCancelled}.
* {@link ResponseErrorCode#ServerCancelled}.
* If a server does, the client needs to retrigger the request.
* <p>
* Since 3.17.0
Expand Down Expand Up @@ -4460,7 +4461,7 @@ class FormattingOptions extends LinkedHashMap<String, Either3<String, Number, Bo

/**
* Describes the content type that a client supports in various
* result literals like {@link Hover}, {@link ParameterInfo} or {@link CompletionItem}.
* result literals like {@link Hover}, {@link ParameterInformation} or {@link CompletionItem}.
* <p>
* Please note that {@code MarkupKind}s must not start with a {@code $}. These kinds
* are reserved for internal usage.
Expand Down Expand Up @@ -6065,7 +6066,7 @@ class ServerCapabilities {

/**
* The position encoding the server picked from the encodings offered
* by the client via the client capability {@link GeneralClientCapabilities.positionEncodings}.
* by the client via the client capability {@link GeneralClientCapabilities#positionEncodings}.
* <p>
* If the client didn't provide any position encodings the only valid
* value that a server can return is {@link PositionEncodingKind#UTF16}.
Expand Down

0 comments on commit 8821222

Please sign in to comment.