LibCrypto+LibJS: Remove {Signed,Unsigned}BigInteger to_base_deprecated

Use `to_base` instead.
This commit is contained in:
devgianlu 2025-04-21 12:13:50 +02:00 committed by Jelle Raaijmakers
commit a019efb24b
Notes: github-actions[bot] 2025-04-28 10:07:28 +00:00
8 changed files with 4 additions and 16 deletions

View file

@ -64,11 +64,6 @@ ErrorOr<String> SignedBigInteger::to_base(u16 N) const
return builder.to_string();
}
ByteString SignedBigInteger::to_base_deprecated(u16 N) const
{
return MUST(to_base(N)).to_byte_string();
}
u64 SignedBigInteger::to_u64() const
{
u64 unsigned_value = m_unsigned_data.to_u64();