We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4bbcbf1 commit 6b0e5a8Copy full SHA for 6b0e5a8
MediatorPatternExamples/src/com/premaseem/mediator/atc/AtcMediator.java
@@ -12,7 +12,7 @@ public void grantLandingPermission(Flight flight) {
12
if (approachingFligh == null) {
13
approachingFligh = flight;
14
flight.status = FlightStatus.IN_APPROACH;
15
- System.out.printf(" Landing Permission Granted to %s , START APPROACHING .... ", flight.name);
+ System.out.printf("HI TEST Landing Permission Granted to %s , START APPROACHING .... ", flight.name);
16
17
} else {
18
if (!approachingFligh.name.equalsIgnoreCase(flight.name)) {
0 commit comments