File tree Expand file tree Collapse file tree 2 files changed +2
-10
lines changed Expand file tree Collapse file tree 2 files changed +2
-10
lines changed Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " couchbase-lite"
3
- version = " 0.1 .0"
3
+ version = " 0.2 .0"
4
4
authors = [" Evgeniy A. Dushistov <dushistov@mail.ru>" ]
5
5
edition = " 2018"
6
6
Original file line number Diff line number Diff line change @@ -192,15 +192,7 @@ impl Database {
192
192
pub fn document_count ( & self ) -> u64 {
193
193
unsafe { c4db_getDocumentCount ( self . inner . 0 . as_ptr ( ) ) }
194
194
}
195
- /// Return existing document from database
196
- #[ deprecated(
197
- since = "0.1.0" ,
198
- note = "Please use get_existing (note the removed 's' after the 't')."
199
- ) ]
200
- pub fn get_existsing ( & self , doc_id : & str ) -> Result < Document > {
201
- self . internal_get ( doc_id, true )
202
- . map ( |x| Document :: new_internal ( x, doc_id) )
203
- }
195
+
204
196
/// Return existing document from database
205
197
pub fn get_existing ( & self , doc_id : & str ) -> Result < Document > {
206
198
self . internal_get ( doc_id, true )
You can’t perform that action at this time.
0 commit comments