Skip to content

Commit

Permalink
Fix to make keywork initialization threadsafe
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.osgeo.org/metacrs/proj4j@2243 4e78687f-474d-0410-85f9-8d5e500ac6b2
  • Loading branch information
mdavis committed Oct 23, 2012
1 parent ff0acb2 commit 56e1231
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ public class Proj4Keyword

private static Set<String> supportedParams = null;

public static Set supportedParameters()
public static synchronized Set supportedParameters()
{
if (supportedParams == null) {
supportedParams = new TreeSet<String>();
Expand Down

0 comments on commit 56e1231

Please sign in to comment.