Skip to content
This repository was archived by the owner on Jan 30, 2019. It is now read-only.

Commit 3716de4

Browse files
author
Arun Gupta
committed
Removing a redundant semi colon
Former-commit-id: a83d82aae3899ded544219f987b6f7ca482c581a
1 parent ff4dafd commit 3716de4

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • lab/solution/movieplex7/src/main/java/org/glassfish/movieplex7/booking

lab/solution/movieplex7/src/main/java/org/glassfish/movieplex7/booking/Booking.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ public String getStartTime() {
8686
public void setStartTime(String startTime) {
8787
StringTokenizer tokens = new StringTokenizer(startTime, ",");
8888
startTimeId = Integer.parseInt(tokens.nextToken());
89-
this.startTime = tokens.nextToken();;
89+
this.startTime = tokens.nextToken();
9090
}
9191

9292
public int getStartTimeId() {

0 commit comments

Comments
 (0)