# HG changeset patch # User Matthew Wild # Date 1540577342 -3600 # Node ID cb92e1c8b6dbf424ee0c3567ac803e09b4bb19a4 # Parent 7c65e3f38e6e4f99ebbcc58a5c9809a980660061 util.dependencies: Remove ztact compatability warning diff -r 7c65e3f38e6e -r cb92e1c8b6db util/dependencies.lua --- a/util/dependencies.lua Fri Oct 26 16:09:25 2018 +0100 +++ b/util/dependencies.lua Fri Oct 26 19:09:02 2018 +0100 @@ -33,19 +33,6 @@ print(""); end --- COMPAT w/pre-0.8 Debian: The Debian config file used to use --- util.ztact, which has been removed from Prosody in 0.8. This --- is to log an error for people who still use it, so they can --- update their configs. -package.preload["util.ztact"] = function () - if not package.loaded["core.loggingmanager"] then - error("util.ztact has been removed from Prosody and you need to fix your config " - .."file. More information can be found at https://prosody.im/doc/packagers#ztact", 0); - else - error("module 'util.ztact' has been deprecated in Prosody 0.8."); - end -end; - local function check_dependencies() if _VERSION < "Lua 5.1" then print "***********************************"