aboutsummaryrefslogtreecommitdiff
path: root/shadowapi/src/main/java/org/robolectric/annotation/internal/DoNotInstrument.java
blob: 4a77d97ab6c23368afe1a5b41a6a2ba0c8740a56 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package org.robolectric.annotation.internal;

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;

/**
 * Indicates that a class should not be stripped/instrumented under any circumstances.
 */
@Documented
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.TYPE})
public @interface DoNotInstrument {
}