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
FKey:=Akey
else
DoError('Duplicatekey or no object')
DoError('Duplicatekey or no object');
end;
procedure TJSONParser.StringValue(const AValue: TJSONStringType);
begin
NewValue(CreateJSON(AValue))
NewValue(CreateJSON(AValue));
end;
procedure TJSONParser.NullValue;