Skip to content

Commit

Permalink
FIX indent
Browse files Browse the repository at this point in the history
  • Loading branch information
fgalan committed Jan 8, 2024
1 parent 0395f1e commit 82ed507
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions src/lib/jsonParseV2/parseRegistration.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,8 @@ static bool dataProvidedParse
{
ciP->httpStatusCode = SccBadRequest;
oeP->code = SccBadRequest;
oeP->error = ERROR_BAD_REQUEST;
oeP->description = "/dataProvided/ must be a JSON object";
oeP->error = ERROR_BAD_REQUEST;
oeP->description = "/dataProvided/ must be a JSON object";

return false;
}
Expand All @@ -68,8 +68,8 @@ static bool dataProvidedParse
{
ciP->httpStatusCode = SccBadRequest;
oeP->code = SccBadRequest;
oeP->error = ERROR_BAD_REQUEST;
oeP->description = "/dataProvided/ is empty";
oeP->error = ERROR_BAD_REQUEST;
oeP->description = "/dataProvided/ is empty";

return false;
}
Expand All @@ -81,7 +81,7 @@ static bool dataProvidedParse
{
ciP->httpStatusCode = SccBadRequest;
oeP->code = SccBadRequest;
oeP->error = ERROR_BAD_REQUEST;
oeP->error = ERROR_BAD_REQUEST;

return false;
}
Expand All @@ -99,8 +99,8 @@ static bool dataProvidedParse
{
ciP->httpStatusCode = SccNotImplemented;
oeP->code = SccNotImplemented;
oeP->error = ERROR_NOTIMPLEMENTED;
oeP->description = ERROR_DESC_IDPATTERN_NOTSUPPORTED;
oeP->error = ERROR_NOTIMPLEMENTED;
oeP->description = ERROR_DESC_IDPATTERN_NOTSUPPORTED;

return false;
}
Expand All @@ -109,8 +109,8 @@ static bool dataProvidedParse
{
ciP->httpStatusCode = SccNotImplemented;
oeP->code = SccNotImplemented;
oeP->error = ERROR_NOTIMPLEMENTED;
oeP->description = ERROR_DESC_TYPEPATTERN_NOTIMPLEMENTED;
oeP->error = ERROR_NOTIMPLEMENTED;
oeP->description = ERROR_DESC_TYPEPATTERN_NOTIMPLEMENTED;

return false;
}
Expand All @@ -122,7 +122,7 @@ static bool dataProvidedParse
{
ciP->httpStatusCode = SccBadRequest;
oeP->code = SccBadRequest;
oeP->error = ERROR_BAD_REQUEST;
oeP->error = ERROR_BAD_REQUEST;

return false;
}
Expand Down

0 comments on commit 82ed507

Please sign in to comment.