The synchronization strategy is different in Apache SIS; we do not synchronize on this
instance anymore.
Command line:
svn diff --extensions "--unified --ignore-space-change --ignore-all-space --ignore-eol-style" -r26202:26203 https://svn.osgeo.org/geotools/trunk/modules/library/referencing/src/main/java/org/geotools/referencing/operation/DefaultMathTransformFactory.java
Revision 26202 | Revision 26203 |
---|---|
* @throws NoSuchIdentifierException if there is no provider registered for the specified
* method.
*/
private MathTransformProvider getProvider(final String method)
throws NoSuchIdentifierException
{
MathTransformProvider provider = lastProvider; // Avoid synchronization |
* @throws NoSuchIdentifierException if there is no provider registered for the specified
* method.
*/
private synchronized MathTransformProvider getProvider(final String method)
throws NoSuchIdentifierException
{
MathTransformProvider provider = lastProvider; // Avoid synchronization |