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

CyclopsMC / IntegratedDynamics / 20210191346

14 Dec 2025 03:32PM UTC coverage: 19.514% (-33.5%) from 53.061%
20210191346

push

github

rubensworks
Remove deprecations

663 of 8728 branches covered (7.6%)

Branch coverage included in aggregate %.

6786 of 29445 relevant lines covered (23.05%)

1.09 hits per line

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

0.0
/src/main/java/org/cyclops/integrateddynamics/capability/path/PathElementDefault.java
1
package org.cyclops.integrateddynamics.capability.path;
2

3
import org.cyclops.integrateddynamics.api.path.IPathElement;
4
import org.cyclops.integrateddynamics.api.path.ISidedPathElement;
5

6
import java.util.Collections;
7
import java.util.Set;
8

9
/**
10
 * Default implementation of {@link IPathElement}.
11
 * @author rubensworks
12
 */
13
public abstract class PathElementDefault implements IPathElement {
×
14

15
    @Override
16
    public Set<ISidedPathElement> getReachableElements() {
17
        return Collections.emptySet();
×
18
    }
19

20
    @Override
21
    public boolean equals(Object o) {
22
        return o instanceof IPathElement && compareTo((IPathElement)o) == 0;
×
23
    }
24

25
    @Override
26
    public int compareTo(IPathElement o) {
27
        return getPosition().compareTo(o.getPosition());
×
28
    }
29

30
    @Override
31
    public int hashCode() {
32
        return getPosition().hashCode();
×
33
    }
34
}
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