Do not try to read the main properties file unless it exists. There are usage

scenarios where there is no main properties file, so no error msg should be shown.
This commit is contained in:
hns 2004-02-18 10:57:39 +00:00
parent 209bfb1c35
commit 5d03b49b07

View file

@ -121,7 +121,7 @@ public final class SystemProperties extends Properties {
clear();
// read from the primary file
if (file != null) {
if (file != null && file.exists()) {
FileInputStream bpin = null;
try {