mirror of
https://github.com/XRPLF/rippled.git
synced 2025-12-06 17:27:55 +00:00
Remove unused function isHex.
This commit is contained in:
@@ -28,14 +28,6 @@ std::vector<unsigned char> AccountState::getRaw() const
|
|||||||
return s.getData();
|
return s.getData();
|
||||||
}
|
}
|
||||||
|
|
||||||
static bool isHex(char j)
|
|
||||||
{
|
|
||||||
if((j>='0') && (j<='9')) return true;
|
|
||||||
if((j>='A') && (j<='F')) return true;
|
|
||||||
if((j>='a') && (j<='f')) return true;
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
void AccountState::addJson(Json::Value& val)
|
void AccountState::addJson(Json::Value& val)
|
||||||
{
|
{
|
||||||
Json::Value as(Json::objectValue);
|
Json::Value as(Json::objectValue);
|
||||||
|
|||||||
@@ -244,3 +244,4 @@ public:
|
|||||||
};
|
};
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
// vim:ts=4
|
||||||
|
|||||||
Reference in New Issue
Block a user