From a1267fb1830ecbca0c5e3939ab2f0cea8386c562 Mon Sep 17 00:00:00 2001 From: Paul Buetow Date: Wed, 18 Feb 2009 22:36:15 +0000 Subject: renamed config.txt into netcalendar.conf --- sources/shared/Config.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'sources/shared/Config.java') diff --git a/sources/shared/Config.java b/sources/shared/Config.java index 92484b2..40e561c 100644 --- a/sources/shared/Config.java +++ b/sources/shared/Config.java @@ -6,13 +6,13 @@ import java.io.*; /** * This class makes all the configuration options available to all the other classes and objects - * of this program. Its reading and writing back the values from and to the config.txt file. + * of this program. Its reading and writing back the values from and to the netcalendar.conf file. * @author buetow * */ public final class Config { public static final String VERSION = "NetCalendar 1.1 SVN"; - private static final String CONFIG_FILE = "config.txt"; + private static final String CONFIG_FILE = "netcalendar.conf"; private static HashMap mapConfigVals; /** @@ -66,7 +66,7 @@ public final class Config { } /** - * This methods reads the options from the calendar config file 'config.txt'. + * This methods reads the options from the calendar config file 'netcalendar.conf'. * @param sConfigFile Specifies the relative or absolute path to the config file. */ public static void readConfig(String sConfigFile) { @@ -211,7 +211,7 @@ public final class Config { } /** - * This method writes the current configuration to the config file "config.txt". + * This method writes the current configuration to the config file "netcalendar.conf". */ public static void writeConfigToFile() { String [] sKeys = getSortedKeyArray(); -- cgit v1.2.3