Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Patch by Daniel McCallum « Hide The executive summary: 1) sakai.properties sets: property1=foo property2=${property1} [email protected]=${property1} 2) I expect: ServerConfigurationService.getString("property1").equals(ServerConfigurationService.getString("property2")) && ServerConfigurationService.getString("property2").equals(myBean.getProperty()) 3) Instead: ServerConfigurationService.getString("property1").equals("foo") && ServerConfigurationService.getString("property2").equals("${property1}") && myBean.getProperty().equals("foo") The attached patch (property-placeholder-dereferencing.diff) fixes this asymmetry. Thanks git-svn-id: https://source.sakaiproject.org/svn/entitybroker/trunk@54471 66ffb92e-73f9-0310-93c1-f5514f145a0a
- Loading branch information