Helpers.java initializes new AIMSICDDbAdapter but doesnt use it
Created by: agilob
public void onClick(DialogInterface dialog, int which) {
// Probably put in try/catch in case file removal fails...
pContext.stopService(new Intent(pContext, AimsicdService.class));
pContext.deleteDatabase("aimsicd.db");
-->> new AIMSICDDbAdapter(pContext);
pContext.startService(new Intent(pContext, AimsicdService.class));
msgLong(pContext,pContext.getString(R.string.delete_database_msg_success));
}
Could you explain why is it doing so?