Changeset 27
- Timestamp:
- 09/26/07 22:23:03 (1 year ago)
- Files:
-
- 1 modified
-
trunk/src/planet/util/Properties.java (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/planet/util/Properties.java
r25 r27 959 959 Properties.factoriesEndPoint = properties.getPropertyAsClass(FACTORIES_ENDPOINT); 960 960 961 Properties.applicationProperties = properties.getPropertyAsClass(APPLICATION_PROPERTIES);962 961 963 962 //testing the correctness of the values … … 968 967 969 968 //ending the loading process 970 Properties.applicationPropertiesInstance = (ApplicationProperties)loadPropertiesInitializer(Properties.applicationProperties); 969 if (properties.getProperty(APPLICATION_PROPERTIES) != null) { 970 Properties.applicationProperties = properties.getPropertyAsClass(APPLICATION_PROPERTIES); 971 Properties.applicationPropertiesInstance = (ApplicationProperties)loadPropertiesInitializer(Properties.applicationProperties); 972 } 971 973 972 974 }
