Skip to content

Commit 4588f24

Browse files
Aseem JainAseem Jain
authored andcommitted
Code review comments implemented - reviewer Naren
1 parent bec09a2 commit 4588f24

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

MediatorPatternExamples/src/com/premaseem/mediator/atc/AtcMediator.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ void landFlight(Flight flight) {
2929
flight.status = FlightStatus.LANDED;
3030
approachingFligh = null;
3131
} else if (flight.status.equals(FlightStatus.IN_Q)) {
32-
System.out.printf("Grand permission before landing - WARNING to %s ", flight.name);
32+
System.out.printf("Added for Training - Grand permission before landing - WARNING to %s ", flight.name);
3333
} else {
3434
System.out.printf("Flight %s is already grounded ", flight.name);
3535
}

MediatorPatternExamples/src/com/premaseem/mediator/atc/Flight.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ public Flight(AtcMediator atcMediator, String flightName) {
1717
void grantLandingPermission(){
1818
atcMediator.grantLandingPermission(this);
1919
System.out.println("just added this line for training")
20+
System.out.println("made changes to address code review comment")
2021
}
2122

2223
void landFlight(){

0 commit comments

Comments
 (0)