BaseResourceProperties has unnecessary cast in addAll() method
GENERAL
TESTING
GENERAL
TESTING
Description
This line has caused us some class cast exceptions issues due to class loading issues. It doesn't seem necessary since the getProperty method can be used instead.
request that a committer change the follow...
line 827:
Object value = ((BaseResourceProperties) other).m_props.get(name);
This line has caused us some class cast exceptions issues due to class loading issues. It doesn't seem necessary since the getProperty method can be used instead.
request that a committer change the follow...
line 827:
Object value = ((BaseResourceProperties) other).m_props.get(name);
change to:
Object value = other.getProperty(name);