Parcourir la source

rename DcAccounts.maybeStartIo() / DcAccounts.stopIo(), same as for DcContext

cyberta il y a 4 ans
Parent
commit
9f665a2b64
1 fichiers modifiés avec 2 ajouts et 2 suppressions
  1. 2 2
      DcCore/DcCore/DC/Wrapper.swift

+ 2 - 2
DcCore/DcCore/DC/Wrapper.swift

@@ -45,13 +45,13 @@ public class DcAccounts {
         dc_accounts_maybe_network(accountsPointer)
     }
 
-    public func maybeStartIO() {
+    public func maybeStartIo() {
         if get().isConfigured() {
             dc_accounts_start_io(accountsPointer)
         }
     }
 
-    public func stopIO() {
+    public func stopIo() {
         dc_accounts_stop_io(accountsPointer)
     }