File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed
java/src/main/java/io/cucumber/cucumberexpressions Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -10,6 +10,9 @@ 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+ - [ Java] class ` KeyboardFriendlyDecimalFormatSymbols ` is now ` public ` and can be used when creating a custom ` Locale ` -aware type transformation method
14+ ([ #376 ] ( https://github.com/cucumber/cucumber-expressions/issues/376 )
15+ [ antagoony] ( https://github.com/antagoony ) )
1316
1417### Removed
1518- [ Python] Remove support for end-of-life Python 3.8 and 3.9 ([ #359 ] ( https://github.com/cucumber/cucumber-expressions/pull/359 ) )
Original file line number Diff line number Diff line change 88 * <p>
99 * Note quite complete, feel free to make a suggestion.
1010 */
11- class KeyboardFriendlyDecimalFormatSymbols {
11+ public class KeyboardFriendlyDecimalFormatSymbols {
1212
13- static DecimalFormatSymbols getInstance (Locale locale ) {
13+ public static DecimalFormatSymbols getInstance (Locale locale ) {
1414 DecimalFormatSymbols symbols = DecimalFormatSymbols .getInstance (locale );
1515
1616 // Replace the minus sign with minus-hyphen as available on most keyboards.
You can’t perform that action at this time.
0 commit comments