Set the defaut config for a VM

Can be called after setting the version

Unavailable on Android, where you cannot instanciate a new JVM.

Property definitions

jvm $ JavaVMInitArgs :: set_default
	# Set the defaut config for a VM
	# Can be called after setting the version
	#
	# Unavailable on Android, where you cannot instanciate a new JVM.
	fun set_default `{
	#ifndef ANDROID
		JNI_GetDefaultJavaVMInitArgs(self);
	#endif
	`}
lib/jvm/jvm.nit:90,2--98,3