| 332 | } |
| 333 | |
| 334 | void CAUserDefault::setFloatForKey(const char* pKey, float value) |
| 335 | { |
| 336 | #ifdef KEEP_COMPATABILITY |
| 337 | deleteNodeByKey(pKey); |
| 338 | #endif |
| 339 | |
| 340 | return setFloatForKeyJNI(pKey, value); |
| 341 | } |
| 342 | |
| 343 | void CAUserDefault::setDoubleForKey(const char* pKey, double value) |
| 344 | { |
nothing calls this directly
no test coverage detected