Added a proper toString() to SerializerRegistration.

git-svn-id: https://jmonkeyengine.googlecode.com/svn/trunk@8941 75d07b2b-3a1a-0410-a2c5-0572b91ccdca
This commit is contained in:
PSp..om 2011-12-17 11:14:15 +00:00
parent 4c2ccc66e0
commit d1576a3580

View File

@ -75,4 +75,8 @@ public final class SerializerRegistration {
public Class getType() {
return type;
}
public String toString() {
return "SerializerRegistration[" + id + ", " + type + ", " + serializer + "]";
}
}