Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

1231

public int getCounter(int totalRaised) {

int raised = this.getTotalRaised();

this.setTotalRaised(this.getTotalRaised() + 1);

return raised;

}

Code Block
123123
123123
 public int getCounter(int totalRaised) {
		int raised = this.getTotalRaised();
		this.setTotalRaised(this.getTotalRaised() + 1);
		return raised;
	}

Expand

123123

1231

Status
colourYellow
title123

...