am 237f5e4f: Remove unused methods from Utils class

* commit '237f5e4f9b984d58199916396ba68dc9958235de':
  Remove unused methods from Utils class
This commit is contained in:
Tadashi G. Takaoka 2012-08-29 00:22:44 -07:00 committed by Android Git Automerger
commit b4605a3ee4

View file

@ -393,16 +393,6 @@ public class Utils {
}
}
public static float getDipScale(Context context) {
final float scale = context.getResources().getDisplayMetrics().density;
return scale;
}
/** Convert pixel to DIP */
public static int dipToPixel(float scale, int dip) {
return (int) (dip * scale + 0.5);
}
public static class Stats {
public static void onNonSeparator(final char code, final int x,
final int y) {