If you look carefully, you see that all of that code is encased within comment brackets:
Code:
/*
@todo ronp - enhance config functionality.
/**
* Saves the current value for all configurable properties in this object to the .ini file. The values for any global config
* properties will be propagated to all child classes.
*
* @param bRefreshInstances if TRUE, all instances of this class will re-load the values for their configurable properties
* from the .ini. THIS WILL CLOBBER ANY EXISTING VALUES!
* @param PropertyName if specified, only this property's value will be saved.
*/
native(536) final function SaveConfig( optional bool bRefreshInstances, optional string PropertyName );
/**
* Saves the default values for all configurable properties in this object's class to the .ini file. The values for any global config
* properties will be propagated to all child classes.
*
* @param bRefreshInstances if TRUE, all instances of this class will re-load the values for their configurable properties
* from the .ini. THIS WILL CLOBBER ANY EXISTING VALUES!
* @param PropertyName if specified, only this property's value will be saved.
*/
native static final function StaticSaveConfig( optional bool bRefreshInstances, optional string PropertyName );
/**
* Resets the values for configurable properties in this object's class back to the values in the corresponding Default*.ini file.
*
* @param bRefreshInstances if TRUE, all instances of this class will re-load the values for their configurable properties
* from the .ini. THIS WILL CLOBBER ANY EXISTING VALUES!
* @param PropertyName if specified, only this property's value will be reset.
*/
native static final function ResetConfig( optional bool bRefreshInstances, optional string PropertyName );
/**
* Removes the values for all configurable properties in this object's class from the .ini file.
*
* @param PropertyName if specified, only this property's value will be removed.
*/
native(537) final function ClearConfig( optional string PropertyName );
/**
* Removes the values for all configurable properties in this object's class from the .ini file.
*
* @param PropertyName if specified, only this property's value will be removed.
*/
native static final function StaticClearConfig( optional string PropertyName );
*/
So there does not appear to be any ClearConfig or ResetConfig function, they will probably be added in a future patch(?).
Bookmarks