| Total Complexity | 2 |
| Total Lines | 14 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | /* |
||
| 29 | public final class NeedHelpChanged extends AbstractTeamOptionChanged { |
||
| 30 | private final boolean newValue; |
||
| 31 | |||
| 32 | public NeedHelpChanged(TeamOptions options, boolean newValue) { |
||
| 33 | 1 | super(options); |
|
| 34 | |||
| 35 | 1 | this.newValue = newValue; |
|
| 36 | 1 | } |
|
| 37 | |||
| 38 | /** |
||
| 39 | * Does help is requested ? |
||
| 40 | */ |
||
| 41 | public boolean helpNeeded() { |
||
| 42 | 1 | return newValue; |
|
| 43 | } |
||
| 45 |