Skip to content
Snippets Groups Projects
Commit 237f5e4f authored by Tadashi G. Takaoka's avatar Tadashi G. Takaoka
Browse files

Remove unused methods from Utils class

Change-Id: I209b75f1cca381610f25cd219f35ea62b9762be2
parent 78527e4d
No related branches found
No related tags found
No related merge requests found
......@@ -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) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment