Update Touch#toString()

This commit is contained in:
Pavel fljot 2014-10-23 02:08:32 +03:00
parent 51ebd1c4fb
commit 822f6d7860

View file

@ -131,7 +131,7 @@ package org.gestouch.core
public function toString():String
{
return "Touch [id: " + id + ", location: " + location + ", ...]";
return "Touch [id: " + id + ", location: " + location + ", target: " + target + ", time: " + time + "]";
}
}
}