class ISO3166::Data

def synchronized(&block)

def synchronized(&block)
  if use_mutex?
    @@mutex.synchronize(&block)
  else
    block.call
  end
end