blob: 91758609458145e00dabbd9feac4f673b6f9527f [file] [log] [blame]
package org.robolectric.shadows;
import android.graphics.NinePatch;
import org.robolectric.annotation.Implementation;
import org.robolectric.annotation.Implements;
@Implements(NinePatch.class)
public class ShadowNinePatch {
@Implementation
protected static boolean isNinePatchChunk(byte[] chunk) {
return chunk != null;
}
}