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

devonfw / IDEasy / 13696924163

06 Mar 2025 10:47AM UTC coverage: 68.467% (+0.2%) from 68.253%
13696924163

Pull #1085

github

web-flow
Merge 19c6a8170 into cb3091c59
Pull Request #1085: #654: improved plugin suppport

3065 of 4919 branches covered (62.31%)

Branch coverage included in aggregate %.

7924 of 11131 relevant lines covered (71.19%)

3.11 hits per line

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

0.0
cli/src/main/java/com/devonfw/tools/ide/process/EnvironmentContextEmpty.java
1
package com.devonfw.tools.ide.process;
2

3
import java.nio.file.Path;
4

5
/**
6
 * Empty implementation of {@link EnvironmentContext} used to prevent {@link NullPointerException}s.
7
 */
8
class EnvironmentContextEmpty implements EnvironmentContext {
9

10
  static final EnvironmentContextEmpty INSTANCE = new EnvironmentContextEmpty();
×
11

12
  private EnvironmentContextEmpty() {
13
    super();
14
  }
15

16
  @Override
17
  public EnvironmentContext withEnvVar(String key, String value) {
18

19
    return this;
×
20
  }
21

22
  @Override
23
  public EnvironmentContext withPathEntry(Path path) {
24

25
    return this;
×
26
  }
27
}
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

© 2026 Coveralls, Inc