Skip to content

Commit

Permalink
Text format
Browse files Browse the repository at this point in the history
  • Loading branch information
Trinea committed Aug 27, 2015
1 parent 6ada6fe commit 1bb2876
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/cn/trinea/android/common/annotation/NotProguard.java
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
package cn.trinea.android.common.annotation;

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

/**
* NotProguard, Means not proguard something, like class, method, field<br/>
*
* @author <a href="http://www.trinea.cn" target="_blank">Trinea</a> 2015-08-07
*/

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
@Retention(RetentionPolicy.CLASS)
@Target({ElementType.TYPE, ElementType.METHOD, ElementType.CONSTRUCTOR, ElementType.FIELD})
public @interface NotProguard {

}
}

0 comments on commit 1bb2876

Please sign in to comment.