File tree Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change
1
+ ## Unreleased patch
2
+
3
+ - Fixed Unimplemented error when running ` pub get ` .
4
+
1
5
## 0.6.2 - 2024-02-19
2
6
3
7
- ` custom_lint --format json ` no-longer outputs non-JSON logs (thanks to @kzrnm )
Original file line number Diff line number Diff line change @@ -142,10 +142,9 @@ class SocketCustomLintServerToClientChannel {
142
142
/// Updates the context roots on the client
143
143
Future <AnalysisSetContextRootsResult > setContextRoots (
144
144
AnalysisSetContextRootsParams contextRoots,
145
- ) {
145
+ ) async {
146
146
_contextRoots = contextRoots;
147
- // TODO: implement setContextRoots
148
- throw UnimplementedError ();
147
+ return AnalysisSetContextRootsResult ();
149
148
}
150
149
151
150
/// Encapsulates all the logic for initializing the process,
You can’t perform that action at this time.
0 commit comments