Config -> PrefsConfig where appropriate.

git-svn-id: svn+ssh://src.earth.threerings.net/nenya/trunk@125 ed5b42cb-e716-0410-a449-f6a68f950b19
This commit is contained in:
Michael Bayne
2007-01-31 00:49:05 +00:00
parent 186327b3d1
commit 12f8cabd90
4 changed files with 17 additions and 21 deletions
+5 -6
View File
@@ -21,15 +21,14 @@
package com.threerings.cast;
import com.samskivert.util.Config;
import com.samskivert.util.PrefsConfig;
/**
* Provides access to runtime configuration parameters for this package
* and its subpackages.
* Provides access to runtime configuration parameters for this package and its subpackages.
*/
public class CastPrefs
{
/** Used to load our preferences from a properties file and map them
* to the persistent Java preferences repository. */
public static Config config = new Config("rsrc/config/cast");
/** Used to load our preferences from a properties file and map them to the persistent Java
* preferences repository. */
public static PrefsConfig config = new PrefsConfig("rsrc/config/cast");
}