Skip to content

Commit

Permalink
CAS-1076 mark as final ticketId parameter to deleteTicket
Browse files Browse the repository at this point in the history
Marks ticketId parameter to deleteTicket() as final since ticketId
assignment is not and is not expected to be modified in deleteTicket()
implementation.
  • Loading branch information
apetro committed Dec 19, 2011
1 parent 1858937 commit cbd607f
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -52,7 +52,7 @@ public void addTicket(final Ticket ticket) {
}
}

public boolean deleteTicket(String ticketId) {
public boolean deleteTicket(final String ticketId) {
if (ticketId == null) {
return false;
}
Expand Down

0 comments on commit cbd607f

Please sign in to comment.