Counter
class
n
/**
n
*Decrement positive count by 1
n
*/
n
n
public void
decrementCount () {
n
if
(tally > 0)
n
tally = tally - 1;
n
}
n