StaticSyntax Posted December 8, 2020 Posted December 8, 2020 I've noticed a lot of the parameter names for methods in the MethodProvider and Script classes are labeled as iiIIIiiIIIii by IntelliJ instead of their correct name. eg. I would expect to see stop(logout: boolean) instead of stop(iiIIIiiIIIii: boolean) It isn't causing any issues. I'm just curious as to why this is the case. Thanks for any answers.
Khaleesi Posted December 8, 2020 Posted December 8, 2020 27 minutes ago, StaticSyntax said: I've noticed a lot of the parameter names for methods in the MethodProvider and Script classes are labeled as iiIIIiiIIIii by IntelliJ instead of their correct name. eg. I would expect to see stop(logout: boolean) instead of stop(iiIIIiiIIIii: boolean) It isn't causing any issues. I'm just curious as to why this is the case. Thanks for any answers. This is because the client code is obfuscated
StaticSyntax Posted December 8, 2020 Author Posted December 8, 2020 10 minutes ago, Khaleesi said: This is because the client code is obfuscated That makes sense. Thank you. 1