Home | History | Annotate | Download | only in util
      1 package com.android.dx.util;
      2 
      3 public class TestUtil {
      4     public static final float DELTA_FLOAT = 0.0001f;
      5     public static final double DELTA_DOUBLE = 0.0001;
      6 }
      7