CTCV2/app/src/main/java/com/discord/stores/StoreThread.java

16 lines
402 B
Java

package com.discord.stores;
import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
import lanchon.dexpatcher.annotation.DexIgnore;
@DexIgnore
@Target({ElementType.METHOD})
@Documented
@Retention(RetentionPolicy.RUNTIME)
public @interface StoreThread {
}