1
0
Fork 0

fixed wrong error message

This commit is contained in:
Frank Celler 2013-04-06 23:45:58 +02:00
parent 32f7be18c2
commit 8fc4cd77f1
1 changed files with 2 additions and 2 deletions

View File

@ -332,7 +332,7 @@ Edge.prototype.properties = function () {
////////////////////////////////////////////////////////////////////////////////
Edge.prototype._PRINT = function (context) {
if (!this._id) {
if (!this._properties._id) {
context.output += "[deleted Edge]";
}
else if (this._properties._key !== undefined) {
@ -508,7 +508,7 @@ Vertex.prototype.properties = function () {
////////////////////////////////////////////////////////////////////////////////
Vertex.prototype._PRINT = function (context) {
if (! this._id) {
if (! this._properties._id) {
context.output += "[deleted Vertex]";
}
else if (this._properties._key !== undefined) {