SharedPreferences e boolean

Eu estou tentando definir o "isPhysicalTheftEnabled" para false quando um método é executado, mas isso não parece funcionar. Alguem tem alguma idéia?

        SharedPreferences sp = getSharedPreferences("isPhysicalTheftEnabled", MODE_WORLD_READABLE);
        SharedPreferences.Editor ed = sp.edit();
        ed.putBoolean("isPhysicalTheftEnabled", false);

questionAnswers(3)

yourAnswerToTheQuestion