• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

zalando / jackson-datatype-money / #2246

pending completion
#2246

push

web-flow
Bump maven-compiler-plugin from 3.10.1 to 3.11.0 (#437)

Bumps [maven-compiler-plugin](https://github.com/apache/maven-compiler-plugin) from 3.10.1 to 3.11.0.
- [Release notes](https://github.com/apache/maven-compiler-plugin/releases)
- [Commits](https://github.com/apache/maven-compiler-plugin/compare/maven-compiler-plugin-3.10.1...maven-compiler-plugin-3.11.0)

---
updated-dependencies:
- dependency-name: org.apache.maven.plugins:maven-compiler-plugin
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

142 of 142 relevant lines covered (100.0%)

1.0 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

100.0
/src/main/java/org/zalando/jackson/datatype/money/MonetaryAmountFormatFactory.java
1
package org.zalando.jackson.datatype.money;
2

3
import org.apiguardian.api.API;
4

5
import javax.annotation.Nullable;
6
import javax.money.format.MonetaryAmountFormat;
7
import java.util.Locale;
8

9
import static org.apiguardian.api.API.Status.STABLE;
10

11
@API(status = STABLE)
12
@FunctionalInterface
13
public interface MonetaryAmountFormatFactory {
14

15
    MonetaryAmountFormatFactory NONE = locale -> null;
1✔
16

17
    @Nullable
18
    MonetaryAmountFormat create(final Locale defaultLocale);
19

20
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2025 Coveralls, Inc