Removes the corresponding entry in the file

Returns self allowing fluent programming

Property definitions

android $ SharedPreferences :: remove
	# Removes the corresponding entry in the file
	# Returns `self` allowing fluent programming
	fun remove(key: String): SharedPreferences
	do
		sys.jni_env.push_local_frame(1)
		editor.remove(key.to_java_string)
		sys.jni_env.pop_local_frame
		commit_if_auto
		return self
	end
lib/android/shared_preferences/shared_preferences_api10.nit:359,2--368,4