Skip to content

Commit 19a32c5

Browse files
committed
remove watermark
1 parent 48e7b05 commit 19a32c5

File tree

2 files changed

+0
-3
lines changed

2 files changed

+0
-3
lines changed

src/config.lua

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@ return {
2929
NameAndVersion = string.format("%s %s", NAME, VERSION),
3030
Version = VERSION;
3131
Revision = REVISION;
32-
Watermark = string.format("Obfuscated using %s %s %s by %s", NAME, REVISION, VERSION, BY); -- You are not allowed to edit the watermark
3332
-- Config Starts Here
3433
IdentPrefix = "__prometheus_"; -- The Prefix used for Identifiers generated by PROMETHEUS. NOTE: There should be no identifiers in the script to be obfuscated starting with that prefix, because that can lead to weird bugs
3534

src/prometheus/pipeline.lua

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -201,8 +201,6 @@ function Pipeline:apply(code, filename)
201201

202202
logger:info(string.format("Generated Code size is %.2f%% of the Source Code size", (string.len(code) / sourceLen)*100))
203203

204-
code = "--[[\n " .. config.Watermark .. "\n]]\n" .. code;
205-
206204
return code;
207205
end
208206

0 commit comments

Comments
 (0)