• 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/cable/CableFakeableDefault.java
1
package org.cyclops.integrateddynamics.capability.cable;
2

3
import org.cyclops.integrateddynamics.api.block.cable.ICableFakeable;
4

5
/**
6
 * Default implementation of {@link ICableFakeable}.
7
 * @author rubensworks
8
 */
9
public abstract class CableFakeableDefault implements ICableFakeable {
×
10

11
    private boolean real = true;
×
12

13
    @Override
14
    public boolean isRealCable() {
15
        return real;
×
16
    }
17

18
    @Override
19
    public void setRealCable(boolean real) {
20
        boolean oldReal = this.real;
×
21
        this.real = real;
×
22
        if (oldReal != this.real) {
×
23
            sendUpdate();
×
24
        }
25
    }
×
26

27
    protected abstract void sendUpdate();
28
}
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