You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
FoxMagiskModuleManager/app/src/sentryless/java/com/fox2code/mmm/sentry/SentryBreadcrumb.java

19 lines
439 B
Java

package com.fox2code.mmm.sentry;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
import java.util.Objects;
public class SentryBreadcrumb {
public SentryBreadcrumb() {}
public void setType(@Nullable String type) {}
public void setData(@NotNull String key, @Nullable Object value) {
Objects.requireNonNull(key);
}
public void setCategory(@Nullable String category) {}
}