Remove unused methods from Utils class

Change-Id: I209b75f1cca381610f25cd219f35ea62b9762be2
main
Tadashi G. Takaoka 2012-08-29 16:10:16 +09:00
parent 78527e4dbb
commit 237f5e4f9b
1 changed files with 0 additions and 10 deletions

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) {