Skip to content

Commit

Permalink
memo not needed, javadoc
Browse files Browse the repository at this point in the history
  • Loading branch information
icklesteve committed May 19, 2019
1 parent 7118d3e commit cf915b7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 0 additions & 2 deletions java/src/jmri/jmrix/can/cbus/CbusThrottleManager.java
Expand Up @@ -33,15 +33,13 @@ public class CbusThrottleManager extends AbstractThrottleManager implements Thro
private boolean _handleExpectedSecondLevelRequest = false;
private int _intAddr;
private DccLocoAddress _dccAddr;
private CanSystemConnectionMemo _memo;

private HashMap<Integer, CbusThrottle> softThrottles = new HashMap<Integer, CbusThrottle>(CbusConstants.CBUS_MAX_SLOTS);

public CbusThrottleManager(CanSystemConnectionMemo memo) {
super(memo);
tc = memo.getTrafficController();
tc.addCanListener(this);
_memo = memo;
}

public void dispose() {
Expand Down
3 changes: 2 additions & 1 deletion java/test/jmri/managers/StealingThrottleManager.java
Expand Up @@ -37,8 +37,9 @@ public void requestThrottleSetup(LocoAddress a, boolean control) {
}

/**
* @Deprecated since 4.15.7; use #responseThrottleDecision
* @deprecated since 4.15.7; use #responseThrottleDecision
*/
@Deprecated
@Override
public void stealThrottleRequest(LocoAddress a, ThrottleListener l,boolean steal){
if(steal) {
Expand Down

0 comments on commit cf915b7

Please sign in to comment.