ruby-gettext / gettext

Gettext gem is a pure Ruby Localization(L10n) library and tool which is modeled after the GNU gettext package.
https://ruby-gettext.github.io/
68 stars 28 forks source link

Fix warning: assigned but unused variable - sorted_entries #58

Closed 284km closed 6 years ago

284km commented 6 years ago

This PR fixes a ruby level warning.

"sorted_entries" is a descriptive variable name, it is easy to read. However, even if there is no local variable name, I think it is obvious to return "sorted_entries" here.

kou commented 6 years ago

Thanks!