Skip to content

Commit 6b0e5a8

Browse files
committed
First Changes in MV
1 parent 4bbcbf1 commit 6b0e5a8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-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
@@ -12,7 +12,7 @@ public void grantLandingPermission(Flight flight) {
1212
if (approachingFligh == null) {
1313
approachingFligh = flight;
1414
flight.status = FlightStatus.IN_APPROACH;
15-
System.out.printf(" Landing Permission Granted to %s , START APPROACHING .... ", flight.name);
15+
System.out.printf("HI TEST Landing Permission Granted to %s , START APPROACHING .... ", flight.name);
1616

1717
} else {
1818
if (!approachingFligh.name.equalsIgnoreCase(flight.name)) {

0 commit comments

Comments
 (0)