Просмотр исходного кода

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

cyberta 4 лет назад
Родитель
Сommit
9f665a2b64
1 измененных файлов с 2 добавлено и 2 удалено
  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)
     }