Skip to content

Commit

Permalink
Code review comments implemented - reviewer Naren
Browse files Browse the repository at this point in the history
  • Loading branch information
Aseem Jain authored and Aseem Jain committed Jan 25, 2017
1 parent bec09a2 commit 4588f24
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ void landFlight(Flight flight) {
flight.status = FlightStatus.LANDED;
approachingFligh = null;
} else if (flight.status.equals(FlightStatus.IN_Q)) {
System.out.printf("Grand permission before landing - WARNING to %s ", flight.name);
System.out.printf("Added for Training - Grand permission before landing - WARNING to %s ", flight.name);
} else {
System.out.printf("Flight %s is already grounded ", flight.name);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ public Flight(AtcMediator atcMediator, String flightName) {
void grantLandingPermission(){
atcMediator.grantLandingPermission(this);
System.out.println("just added this line for training")
System.out.println("made changes to address code review comment")
}

void landFlight(){
Expand Down

0 comments on commit 4588f24

Please sign in to comment.