This commit is contained in:
jaewohong
2026-01-08 09:46:33 +09:00
parent 173d99e947
commit bfa74e5d7e
2 changed files with 2 additions and 2 deletions
@@ -48,7 +48,7 @@ public class SeedKJDecrypt extends PostfixMathCommand {
value =((Number) param).toString().getBytes();
}
} else if (param instanceof Number) {
value = ((Number) param).toString().getBytes();
value = ((Number) param).toString().getBytes();
} else if (param == null) {
inStack.push(null);
return;
@@ -5,7 +5,7 @@ import java.util.Stack;
import org.nfunk.jep.ParseException;
import org.nfunk.jep.function.PostfixMathCommand;
import com.eactive.eai.common.property.PropManager;
import com.eactive.eai.common.property.PropManager;
import java.nio.charset.StandardCharsets;