Skip to content

Commit 55e3803

Browse files
author
Jimmi Hansen
committed
Remove unused comments
1 parent 443ec5a commit 55e3803

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

lua/langs/sh_lang.lua

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,7 @@ function LANG:Init(lang, addon, team, callback)
1818

1919
hook.Add('Tick', 'LanguageReadyTick', function()
2020
self:Download(self.callback,nil, 0)
21-
print('download call')
2221
hook.Remove('Tick', 'LanguageReadyTick')
23-
print('removed')
2422
end)
2523

2624
return self
@@ -56,10 +54,8 @@ local function fetch(url)
5654
end
5755

5856
function LANG:Download(callback, retry)
59-
//print('called for download')
60-
//print(string.lower(self:getTeam()),string.lower(self:getAddon()),string.lower(self:getLang()))
6157
local url = 'https://raw.githubusercontent.com/Upgration/Languages/master/lang/'..string.lower(self:getTeam())..'/'..string.lower(self:getAddon())..'/'..string.lower(self:getLang())..'.json'
62-
//print(url)
58+
6359
fetch(url)
6460
:next(function(body)
6561
local tbl = util.JSONToTable(body)
@@ -68,7 +64,6 @@ function LANG:Download(callback, retry)
6864
elseif not tbl then
6965
return print('Unable to decode JSON')
7066
end
71-
print(body)
7267

7368
if not file.IsDir(self:Path(), 'DATA') then
7469
file.CreateDir(self:Path())

0 commit comments

Comments
 (0)