Remove debug output

This commit is contained in:
Thomas Geymayer 2013-02-07 10:10:38 +01:00
parent 21e2a769eb
commit 4bef2c48eb

View File

@ -115,11 +115,9 @@ public:
T operator=(const T& aValue)
{
SGPropertyNode* n = PropertyObjectBase::node(true);
if (!n) {
std::cout << "no node" << std::endl;
if( !n )
return aValue;
}
n->setValue<T>(aValue);
return aValue;
}