Browse Source

fcl-json: added missing semicolons

git-svn-id: trunk@38388 -
Mattias Gaertner 7 years ago
parent
commit
91dd43c9c2
1 changed files with 2 additions and 2 deletions
  1. 2 2
      packages/fcl-json/src/jsonparser.pp

+ 2 - 2
packages/fcl-json/src/jsonparser.pp

@@ -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;