-
-
Notifications
You must be signed in to change notification settings - Fork 851
ICU-23292 add toString method to ICUResourceBundle
#3797
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
base: main
Are you sure you want to change the base?
Conversation
| private enum RootType { | ||
| @Override | ||
| public String toString() { | ||
| return "UResourceBundle{" + "name=" + getBaseBundleName() + ",locale=" + getLocale() + '}'; | ||
| } | ||
|
|
||
| private enum RootType { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please fix the text indentation.
Also, this change is small/minor enough that it probably makes more sense to keep in your main PR.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please fix the text indentation.
Oops, fixed.
Also, this change is small/minor enough that it probably makes more sense to keep in your main PR.
The thing is it's unrelated to my main PR - this issue is triggered by another debug flag.
|
|
||
| @Override | ||
| public String toString() { | ||
| return "UResourceBundle{" + "name=" + getBaseBundleName() + ",locale=" + getLocale() + '}'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| return "UResourceBundle{" + "name=" + getBaseBundleName() + ",locale=" + getLocale() + '}'; | |
| return "UResourceBundle{name=" + getBaseBundleName() + ", locale=" + getLocale() + '}'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done.
Fixes ICU-23292. Issue found while testing #3795.