Skip to content

Commit

Permalink
Added todo comment to remember to remove workaround for bug #84; and …
Browse files Browse the repository at this point in the history
…in reference to #86
  • Loading branch information
Luigi R. Viggiano committed Jul 24, 2014
1 parent 8ff32ab commit 73ebf5d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ private boolean equals(Method a, Method b) {
private Object resolveProperty(Method method, Object... args) {
String key = expandKey(method);
String value = propertiesManager.getProperty(key);
if (value == null && !isFeatureDisabled(method, VARIABLE_EXPANSION)) {
if (value == null && !isFeatureDisabled(method, VARIABLE_EXPANSION)) { // TODO: this if should go away! See #84 and #86
String unexpandedKey = key(method);
value = propertiesManager.getProperty(unexpandedKey);
}
Expand Down

0 comments on commit 73ebf5d

Please sign in to comment.