Skip to content
Snippets Groups Projects
Commit 34663c64 authored by Rainer Kartmann's avatar Rainer Kartmann
Browse files

Use AronClassFromAron()

parent effff0d0
No related branches found
No related tags found
No related merge requests found
......@@ -62,9 +62,7 @@ namespace armarx::armem
try
{
AronClass t;
t.fromAron(item.data());
return t;
return AronClass::FromAron(item.data());
}
catch (const armarx::aron::error::AronException&)
{
......
......@@ -289,9 +289,7 @@ namespace armarx::armem::robot_state
try
{
AronClass t;
t.fromAron(item.data());
return t;
return AronClass::FromAron(item.data());
}
catch (const armarx::aron::error::AronException&)
{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment