• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 package com.xtremelabs.robolectric.internal;
2 
3 /**
4  * Indicates that a class should not be stripped/instrumented under any circumstances.
5  */
6 @java.lang.annotation.Documented
7 @java.lang.annotation.Retention(java.lang.annotation.RetentionPolicy.RUNTIME)
8 @java.lang.annotation.Target({java.lang.annotation.ElementType.TYPE})
9 public @interface DoNotInstrument {
10 }
11