Removes the entry associated with the given key

Property definitions

android $ Bundle :: remove
	# Removes the entry associated with the given key
	fun remove(key: String)
	do
		sys.jni_env.push_local_frame(1)
		native_bundle.remove(key.to_java_string)
		sys.jni_env.pop_local_frame
	end
lib/android/bundle/bundle.nit:452,2--458,4