Changed call to Properties.save() to Properties.store() since save() is deprecated. jrg

This commit is contained in:
talisman%anamorphic.com 2001-04-08 09:44:43 +00:00
Родитель d7632eed83
Коммит 5ffcd40159
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -75,7 +75,7 @@ class PreferencesBase extends Properties implements Preferences {
OutputStream out = null;
try {
out = new FileOutputStream(outfile);
save(out, "Grendel User Preferences. Do not directly modify this file!");
store(out, "Grendel User Preferences. Do not directly modify this file!");
out.close();
} catch (IOException e) {
e.printStackTrace();