Add RRP support to regV5.

This commit is contained in:
Greyson Parrelli
2026-02-11 20:38:35 -05:00
committed by Alex Hart
parent 17dbdf3b74
commit 5c418a4260
33 changed files with 1821 additions and 232 deletions

View File

@@ -8,7 +8,7 @@ package org.signal.core.util.logging
/**
* A logger that does nothing.
*/
internal class NoopLogger : Log.Logger() {
class NoopLogger : Log.Logger() {
override fun v(tag: String, message: String?, t: Throwable?, keepLonger: Boolean) = Unit
override fun d(tag: String, message: String?, t: Throwable?, keepLonger: Boolean) = Unit
override fun i(tag: String, message: String?, t: Throwable?, keepLonger: Boolean) = Unit