mirror of
https://github.com/refactorinqq/SLC-1.8.9.git
synced 2024-11-10 13:21:32 +01:00
10 lines
225 B
JavaScript
10 lines
225 B
JavaScript
|
function isRemappingEnabledForClass(node) {
|
||
|
return false;
|
||
|
}
|
||
|
function isObfuscatorEnabledForClass(node) {
|
||
|
return (
|
||
|
node.name.startsWith("net/silentclient") &&
|
||
|
!node.name.startsWith("net/silentclient/client/mixin")
|
||
|
);
|
||
|
}
|