* minor
- Added display of AdempiereProperties in Preference window's info tab.
This commit is contained in:
parent
4b2f7a14ac
commit
5b04edd286
|
@ -207,6 +207,9 @@ public final class Ini implements Serializable
|
|||
|
||||
/** Container for Properties */
|
||||
private static Properties s_prop = new Properties();
|
||||
|
||||
private static String s_propertyFileName = null;
|
||||
|
||||
/** Logger */
|
||||
private static Logger log = Logger.getLogger(Ini.class.getName());
|
||||
|
||||
|
@ -311,6 +314,8 @@ public final class Ini implements Serializable
|
|||
saveProperties(true);
|
||||
s_loaded = true;
|
||||
log.info(filename + " #" + s_prop.size());
|
||||
s_propertyFileName = filename;
|
||||
|
||||
return firstTime;
|
||||
} // loadProperties
|
||||
|
||||
|
@ -780,4 +785,9 @@ public final class Ini implements Serializable
|
|||
{
|
||||
return isPropertyBool(P_SERVER_VALIDATE_SECURITY_TOKEN);
|
||||
}
|
||||
|
||||
public static String getPropertyFileName()
|
||||
{
|
||||
return s_propertyFileName;
|
||||
}
|
||||
} // Ini
|
||||
|
|
Loading…
Reference in New Issue