fcl-json: added missing semicolons

git-svn-id: trunk@38388 -
This commit is contained in:
Mattias Gaertner 2018-02-28 23:01:05 +00:00
parent 61053ead34
commit 91dd43c9c2

View File

@ -124,12 +124,12 @@ begin
if (FStruct is TJSONObject) and (FKey='') then if (FStruct is TJSONObject) and (FKey='') then
FKey:=Akey FKey:=Akey
else else
DoError('Duplicatekey or no object') DoError('Duplicatekey or no object');
end; end;
procedure TJSONParser.StringValue(const AValue: TJSONStringType); procedure TJSONParser.StringValue(const AValue: TJSONStringType);
begin begin
NewValue(CreateJSON(AValue)) NewValue(CreateJSON(AValue));
end; end;
procedure TJSONParser.NullValue; procedure TJSONParser.NullValue;