@@ -122,7 +122,6 @@ impl ObjectStore for VirtualObjectStore {
122
122
_payload : PutPayload ,
123
123
_opts : PutOptions ,
124
124
) -> Result < PutResult > {
125
- // TODO: Implement write operations if needed
126
125
Err ( Error :: NotSupported {
127
126
source : std:: io:: Error :: other (
128
127
"VirtualObjectStore does not support write operations" ,
@@ -136,7 +135,6 @@ impl ObjectStore for VirtualObjectStore {
136
135
_location : & Path ,
137
136
_opts : PutMultipartOptions ,
138
137
) -> Result < Box < dyn MultipartUpload > > {
139
- // TODO: Implement write operations if needed
140
138
Err ( Error :: NotSupported {
141
139
source : std:: io:: Error :: other (
142
140
"VirtualObjectStore does not support write operations" ,
@@ -151,7 +149,6 @@ impl ObjectStore for VirtualObjectStore {
151
149
}
152
150
153
151
async fn delete ( & self , _location : & Path ) -> Result < ( ) > {
154
- // TODO: Implement write operations if needed
155
152
Err ( Error :: NotSupported {
156
153
source : std:: io:: Error :: other (
157
154
"VirtualObjectStore does not support write operations" ,
@@ -242,7 +239,6 @@ impl ObjectStore for VirtualObjectStore {
242
239
}
243
240
244
241
async fn copy ( & self , _from : & Path , _to : & Path ) -> Result < ( ) > {
245
- // TODO: Implement write operations if needed
246
242
Err ( Error :: NotSupported {
247
243
source : std:: io:: Error :: other (
248
244
"VirtualObjectStore does not support write operations" ,
@@ -252,7 +248,6 @@ impl ObjectStore for VirtualObjectStore {
252
248
}
253
249
254
250
async fn copy_if_not_exists ( & self , _from : & Path , _to : & Path ) -> Result < ( ) > {
255
- // TODO: Implement write operations if needed
256
251
Err ( Error :: NotSupported {
257
252
source : std:: io:: Error :: other (
258
253
"VirtualObjectStore does not support write operations" ,
0 commit comments