Home | History | Annotate | Download | only in shadows
      1 package org.robolectric.shadows;
      2 
      3 import android.os.Handler;
      4 import org.robolectric.annotation.Implements;
      5 
      6 @Deprecated
      7 // Even though it doesn't implement anything, some parts of the system will fail if we don't have the
      8 // @Implements tag (ShadowWrangler).
      9 @Implements(Handler.class)
     10 public class ShadowHandler {
     11 
     12 }
     13