Skip to content

Commit bab8f8d

Browse files
Apply suggestions from code review
Co-authored-by: M.P. Korstanje <[email protected]>
1 parent 3d74467 commit bab8f8d

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
1010
- [Ruby] Minor cosmetic / CI changes for development (Nothing front-facing)
1111
- [Python] PEP 639 licence metadata specification ([#361](https://github.com/cucumber/cucumber-expressions/pull/361))
1212
- [Java] Add OSGi metadata
13+
### Added
1314
- [Java] class `KeyboardFriendlyDecimalFormatSymbols` is now `public` and can be used when creating a custom `Locale`-aware type transformation method
1415
([#376](https://github.com/cucumber/cucumber-expressions/issues/376)
1516
[antagoony](https://github.com/antagoony))

java/src/main/java/io/cucumber/cucumberexpressions/KeyboardFriendlyDecimalFormatSymbols.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* <p>
99
* Note quite complete, feel free to make a suggestion.
1010
*/
11-
public class KeyboardFriendlyDecimalFormatSymbols {
11+
public final class KeyboardFriendlyDecimalFormatSymbols {
1212

1313
public static DecimalFormatSymbols getInstance(Locale locale) {
1414
DecimalFormatSymbols symbols = DecimalFormatSymbols.getInstance(locale);

0 commit comments

Comments
 (0)