Also introduced by AMDATU-517 a small default value bug in a static method caused a difference between empty string and null with regard to the contextId property. Fix comitted.

public static String getStringProperty(ServiceReference ref, String key, String def) {
         String value = getStringProperty(ref, key);
-        return value != null ? value : null;
+        return value != null ? value : def;
     }
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators.
For more information on JIRA, see: http://www.atlassian.com/software/jira
_______________________________________________
Amdatu-developers mailing list
[email protected]
http://lists.amdatu.org/mailman/listinfo/amdatu-developers

Reply via email to