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

AuthMe / ConfigMe / 7041999669

30 Nov 2023 04:25AM UTC coverage: 99.413%. Remained the same
7041999669

Pull #401

github

web-flow
Bump actions/setup-java from 3 to 4

Bumps [actions/setup-java](https://github.com/actions/setup-java) from 3 to 4.
- [Release notes](https://github.com/actions/setup-java/releases)
- [Commits](https://github.com/actions/setup-java/compare/v3...v4)

---
updated-dependencies:
- dependency-name: actions/setup-java
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
Pull Request #401: Bump actions/setup-java from 3 to 4

527 of 540 branches covered (0.0%)

1524 of 1533 relevant lines covered (99.41%)

4.57 hits per line

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

100.0
/src/main/java/ch/jalu/configme/beanmapper/DefaultMapper.java
1
package ch.jalu.configme.beanmapper;
2

3
import org.jetbrains.annotations.NotNull;
4

5
/**
6
 * Provides the {@link Mapper} instance which is used by default.
7
 */
8
public final class DefaultMapper extends MapperImpl {
9

10
    private static DefaultMapper instance;
11

12
    private DefaultMapper() {
13
    }
14

15
    /**
16
     * @return default mapper instance
17
     */
18
    public static @NotNull Mapper getInstance() {
19
        if (instance == null) {
2✔
20
            instance = new DefaultMapper();
4✔
21
        }
22
        return instance;
2✔
23
    }
24
}
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