[skip] code spacing

This commit is contained in:
Connor Tumbleson 2014-05-12 17:00:49 -05:00
parent b149d7bd49
commit 0bb217ac88

View File

@ -286,11 +286,6 @@ public class TypedValue {
case TYPE_INT_DEC:
res = Integer.toString(data);
break;
// defined before
/*
* case TYPE_INT_HEX: res = "0x" + Integer.toHexString(data); break;
* case TYPE_INT_BOOLEAN: res = (data != 0) ? "true":"false"; break;
*/
}
return res;
}
@ -298,4 +293,4 @@ public class TypedValue {
return null;
}
};
}