Skip to content

Commit cf16c1f

Browse files
committed
Switched all interface event publishers to local
1 parent 541a961 commit cf16c1f

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

Diff for: app.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@
1313
"capabilities": [],
1414
"dependencies": [],
1515
"screenshots": [],
16-
"platform": "11.0.0.0",
17-
"application": "11.0.0.0",
16+
"platform": "13.0.0.0",
17+
"application": "13.0.0.0",
1818
"idRange": {
1919
"from": 50100,
2020
"to": 50149

Diff for: src/Car/ICar.al

+3-3
Original file line numberDiff line numberDiff line change
@@ -26,14 +26,14 @@ codeunit 50100 ICar
2626
OnGetEngine(engineOut, _binder.GetBindingID());
2727
end;
2828

29-
29+
3030
[IntegrationEvent(false, false)]
31-
procedure OnGetTopSpeed(var topSpeed: Decimal; bindingID: Guid)
31+
local procedure OnGetTopSpeed(var topSpeed: Decimal; bindingID: Guid)
3232
begin
3333
end;
3434

3535
[IntegrationEvent(false, false)]
36-
procedure OnGetEngine(var engine: Codeunit IEngine; bindingID: Guid)
36+
local procedure OnGetEngine(var engine: Codeunit IEngine; bindingID: Guid)
3737
begin
3838
end;
3939
}

Diff for: src/Engine/IEngine.al

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ codeunit 50104 IEngine
2323

2424

2525
[IntegrationEvent(false, false)]
26-
procedure OnGetHorsePower(var horsePower: Decimal; bindingID: Guid)
26+
local procedure OnGetHorsePower(var horsePower: Decimal; bindingID: Guid)
2727
begin
2828
end;
2929
}

0 commit comments

Comments
 (0)