Details
-
Type:
Bug
-
Status:
Resolved
-
Priority:
Critical
-
Resolution: Fixed
-
Affects Version/s: 2.0.5, 3.0.RC1
-
Fix Version/s: 2.0.7
-
Component/s: Converters
-
Documentation Required:No
I took 2.0.6 source and see some sychronized blocks have been added in DefaultConverterManager .. but not in DefaultRemoter. DefaultRemoter still iterates through the hash keys in an unsychronized fashion:
Collection converterMatches = converterManager.getConverterMatchStrings();
Iterator it = converterMatches.iterator();
while (it.hasNext())
{
String match = (String) it.next();