Skip to content

Commit 73b71d2

Browse files
committed
remove!: Don't match on AccessorFuncDT
We have deprecated the `AccessorFuncDT` usage in our TTT2 codebase and are not using it anymore either.
1 parent 1778bba commit 73b71d2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

source/DataStructures/Lua/Accessor.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ public class Accessor : DataStructure
88
{
99
public override Regex GetRegex()
1010
{
11-
return new Regex(@"\s*AccessorFunc(DT)?\s*\((\w|,|\s)+\)"); // RegEx matches "hook.Run(" or "hook.Call("
11+
return new Regex(@"\s*AccessorFunc\s*\((\w|,|\s)+\)");
1212
}
1313

1414
public override bool CheckMatch(string line)

0 commit comments

Comments
 (0)