Skip to content
Snippets Groups Projects
Verified Commit be76c5b7 authored by akwizgran's avatar akwizgran
Browse files

Add safety annotations.

parent 909e946e
No related branches found
No related tags found
1 merge request!1154Enable debug logging for debug and beta builds
Pipeline #3654 passed
package org.briarproject.briar.android;
import org.briarproject.bramble.api.nullsafety.NotNullByDefault;
import java.util.logging.Handler;
import java.util.logging.Level;
import java.util.logging.LogRecord;
import javax.annotation.concurrent.Immutable;
/**
* Log handler that raises all records at or above a given source level to a
* given destination level. This affects the level seen by subsequent handlers.
*/
@Immutable
@NotNullByDefault
class LevelRaisingHandler extends Handler {
private final Level dest;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment