mirror of https://gitee.com/bigwinds/arangodb
fix typo in method name
This commit is contained in:
parent
3d2591f746
commit
d5af72f47f
|
@ -180,7 +180,7 @@ void VppCommTask::addResponse(VppResponse* response, bool isError) {
|
||||||
|
|
||||||
VPackBuilder builder;
|
VPackBuilder builder;
|
||||||
if (response_message._generateBody) {
|
if (response_message._generateBody) {
|
||||||
builder = basics::VelocyPackHelper::stanitizeExternalsChecked(
|
builder = basics::VelocyPackHelper::sanitizeExternalsChecked(
|
||||||
response_message._payload);
|
response_message._payload);
|
||||||
slices.push_back(builder.slice());
|
slices.push_back(builder.slice());
|
||||||
}
|
}
|
||||||
|
|
|
@ -873,7 +873,7 @@ bool VelocyPackHelper::hasExternals(VPackSlice input) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
VPackBuilder VelocyPackHelper::stanitizeExternalsChecked(VPackSlice input,
|
VPackBuilder VelocyPackHelper::sanitizeExternalsChecked(VPackSlice input,
|
||||||
bool checkExternals) {
|
bool checkExternals) {
|
||||||
VPackBuilder builder;
|
VPackBuilder builder;
|
||||||
bool resolveExt = true;
|
bool resolveExt = true;
|
||||||
|
|
|
@ -356,7 +356,7 @@ class VelocyPackHelper {
|
||||||
arangodb::velocypack::Builder&);
|
arangodb::velocypack::Builder&);
|
||||||
|
|
||||||
static bool hasExternals(arangodb::velocypack::Slice const);
|
static bool hasExternals(arangodb::velocypack::Slice const);
|
||||||
static VPackBuilder stanitizeExternalsChecked(
|
static VPackBuilder sanitizeExternalsChecked(
|
||||||
arangodb::velocypack::Slice const, bool checkExternals = true);
|
arangodb::velocypack::Slice const, bool checkExternals = true);
|
||||||
|
|
||||||
static uint8_t const KeyAttribute = 0x31;
|
static uint8_t const KeyAttribute = 0x31;
|
||||||
|
|
Loading…
Reference in New Issue