Skip to content

Commit

Permalink
Merge pull request #52 from simatic-ax/tiax_compatibility
Browse files Browse the repository at this point in the history
tiax compatibility
  • Loading branch information
sjuergen authored Nov 28, 2022
2 parents 0e5b950 + df6ebf0 commit 0d48744
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion apax.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ targets:
- 'axunit-llvm'
# Dependencies
devDependencies:
"@ax/sdk": 3.0.2
"@ax/sdk": 3.0.8
"@simatic-ax/snippetscollection": 0.0.15
dependencies:
"@ax/system-strings": 4.1.43
Expand Down
2 changes: 1 addition & 1 deletion docs/JsonObject.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Inheritance: AbstractJsonElement-->JsonObject
|||
|-|-|
|value : DINT;| Value of this element
|key : STRING := 'NoKeySet';| Key of this element
|key : STRING := '';| Key of this element

## Methods

Expand Down
2 changes: 1 addition & 1 deletion src/Document/JsonDocument.st
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ NAMESPACE Simatic.Ax.Json
{axcode:docs-v0:@simatic-ax/json:JsonDocument.md}
METHOD PUBLIC ClearBuffer
VAR_INPUT
hard : BOOL := FALSE;
hard : BOOL;
END_VAR
VAR_TEMP
i : DINT;
Expand Down
2 changes: 1 addition & 1 deletion src/Elements/AbstractJsonElement.st
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ USING Simatic.Ax.Json;
NAMESPACE Simatic.Ax.Json
CLASS ABSTRACT AbstractJsonElement IMPLEMENTS IJsonElementMuteable, IJsonElement
VAR PUBLIC
Key : STRING := 'NoKeySet';
Key : STRING;
END_VAR

VAR PROTECTED
Expand Down

0 comments on commit 0d48744

Please sign in to comment.