lib/citeproc/ruby/renderer.rb in citeproc-ruby-1.1.2 vs lib/citeproc/ruby/renderer.rb in citeproc-ruby-1.1.3
- old
+ new
@@ -17,17 +17,9 @@
locale, format = options_or_engine.values_at(:locale, :format)
@locale, @format = CSL::Locale.load(locale), Format.load(format)
end
end
- def locale
- @locale ||= CSL::Locale.load
- end
-
- def locale=(new_locale)
- @locale = CSL::Locale.load new_locale
- end
-
def abbreviate(*arguments)
return unless engine
engine.abbreviate(*arguments)
end
alias abbrev abbreviate