]> granicus.if.org Git - ejabberd/commitdiff
Update mod_muc_room.hrl
authorEvgeniy Khramtsov <ekhramtsov@process-one.net>
Thu, 14 Jun 2018 16:19:09 +0000 (19:19 +0300)
committerEvgeniy Khramtsov <ekhramtsov@process-one.net>
Thu, 14 Jun 2018 16:19:09 +0000 (19:19 +0300)
include/mod_muc_room.hrl

index b4804114a30553a7895d5a23e82a100746851008..35bdb6ff721fe730f5ed64f78065c1c6e3f879a7 100644 (file)
@@ -18,8 +18,6 @@
 %%%
 %%%----------------------------------------------------------------------
 
--include("type_compat.hrl").
-
 -define(MAX_USERS_DEFAULT, 200).
 
 -define(SETS, gb_sets).
@@ -64,7 +62,7 @@
     logging                              = false :: boolean(),
     vcard                                = <<"">> :: binary(),
     vcard_xupdate                        = undefined :: undefined | external | binary(),
-    captcha_whitelist                    = (?SETS):empty() :: ?TGB_SET,
+    captcha_whitelist                    = (?SETS):empty() :: gb_sets:set(),
     mam                                  = false :: boolean(),
     pubsub                               = <<"">> :: binary(),
     lang                                 = ejabberd_config:get_mylang() :: binary()
     access                  = {none,none,none,none} :: {atom(), atom(), atom(), atom()},
     jid                     = #jid{} :: jid(),
     config                  = #config{} :: config(),
-    users                   = (?DICT):new() :: ?TDICT,
-    subscribers             = (?DICT):new() :: ?TDICT,
-    subscriber_nicks        = (?DICT):new() :: ?TDICT,
+    users                   = (?DICT):new() :: dict:dict(),
+    subscribers             = (?DICT):new() :: dict:dict(),
+    subscriber_nicks        = (?DICT):new() :: dict:dict(),
     last_voice_request_time = treap:empty() :: treap:treap(),
-    robots                  = (?DICT):new() :: ?TDICT,
-    nicks                   = (?DICT):new() :: ?TDICT,
-    affiliations            = (?DICT):new() :: ?TDICT,
+    robots                  = (?DICT):new() :: dict:dict(),
+    nicks                   = (?DICT):new() :: dict:dict(),
+    affiliations            = (?DICT):new() :: dict:dict(),
     history                 :: lqueue(),
     subject                 = [] :: [text()],
     subject_author          = <<"">> :: binary(),