Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
B
B Language Server
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Model registry
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
general
stups
B Language Server
Commits
908deba8
Commit
908deba8
authored
4 years ago
by
SeeBasTStick
Browse files
Options
Downloads
Patches
Plain Diff
removed unused file
parent
a25eb6dd
No related branches found
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/main/kotlin/b/language/server/communication/CommunicationCollector.kt
+0
-46
0 additions, 46 deletions
...b/language/server/communication/CommunicationCollector.kt
with
0 additions
and
46 deletions
src/main/kotlin/b/language/server/communication/CommunicationCollector.kt
deleted
100644 → 0
+
0
−
46
View file @
a25eb6dd
package
b.language.server.communication
import
org.eclipse.lsp4j.MessageType
import
org.eclipse.lsp4j.PublishDiagnosticsParams
class
CommunicationCollector
:
CommunicatorInterface
{
val
log
:
MutableList
<
Pair
<
String
,
MessageType
>>
=
mutableListOf
()
/**
* Sends the diagnostics
*
* @param diagnostics object containing the Diagnostics
*/
override
fun
publishDiagnostics
(
diagnostics
:
PublishDiagnosticsParams
)
{
TODO
(
"Not yet implemented"
)
}
/**
* Sends a debug message resulting in a output channel message
*
* @param message the message to send
* @param severity the Severity of the message (Error/Info/Warning)
*/
override
fun
sendDebugMessage
(
message
:
String
,
severity
:
MessageType
)
{
log
.
add
(
Pair
(
message
,
severity
))
}
/**
* Sends a popup message resulting in a popup message
*
* @param message the message to send
* @param severity the Severity of the message (Error/Info/Warning)
*/
override
fun
showMessage
(
message
:
String
,
severity
:
MessageType
)
{
TODO
(
"Not yet implemented"
)
}
/**
* To enable/disable debug mode
*
* @param mode the new state of the debug mode
*/
override
fun
setDebugMode
(
mode
:
Boolean
)
{
TODO
(
"Not yet implemented"
)
}
}
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment