-
Notifications
You must be signed in to change notification settings - Fork 188
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
OptionHandler's getMetaVariable fails when used with ResourceBundle #109
base: master
Are you sure you want to change the base?
Conversation
Kohsuke Kawaguchi » args4j #168 UNSTABLE |
Kohsuke Kawaguchi » args4j #169 SUCCESS |
Kohsuke Kawaguchi » args4j #172 FAILURE |
Kohsuke Kawaguchi » args4j #173 FAILURE |
Unfortunately, too many whitespace changes make it difficult to review this diff |
Kohsuke Kawaguchi » args4j #177 FAILURE |
Kohsuke Kawaguchi » args4j #178 FAILURE |
Sorry for creating such a sloppy pull request in the first place. I tidied up the pull request - it should be very easy to review now. |
can this be merged? |
In my eyes it's ready to merge.
|
Hi, |
the method checks if there is a localization for the metavar and assumes that ResourceBundle#getString(key) will return null when there is no key. But the getString method will throw a MissingResourceException instead. Therefore it is not possbile to use getString with L10N.
(sorry for re-format of the test class)