discord-jadx/app/src/main/java/org/webrtc/CalledByNativeUnchecked.java

12 lines
323 B
Java

package org.webrtc;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
@Target({ElementType.METHOD})
@Retention(RetentionPolicy.CLASS)
public @interface CalledByNativeUnchecked {
String value() default "";
}