mirror of
https://github.com/Katana-Official/SPatch-Update.git
synced 2026-03-21 05:19:45 +08:00
18 lines
528 B
Java
18 lines
528 B
Java
package com.swift.sandhook.annotation;
|
|
|
|
import java.lang.annotation.ElementType;
|
|
import java.lang.annotation.Retention;
|
|
import java.lang.annotation.RetentionPolicy;
|
|
import java.lang.annotation.Target;
|
|
|
|
@Retention(RetentionPolicy.RUNTIME)
|
|
@Target({ElementType.PARAMETER})
|
|
public @interface Param {
|
|
String value() default "";
|
|
}
|
|
|
|
|
|
/* Location: C:\User\\user\Desktop\classes-dex2jar.jar!\com\swift\sandhook\annotation\Param.class
|
|
* Java compiler version: 6 (50.0)
|
|
* JD-Core Version: 1.1.1
|
|
*/ |