Skip to content
Snippets Groups Projects
Commit 14293eac authored by tpylak's avatar tpylak
Browse files

minor: add toString to image transformation object

SVN: 23406
parent 7de72012
No related branches found
No related tags found
No related merge requests found
......@@ -118,4 +118,17 @@ public class ImageTransformation
{
this.isDefault = isDefault;
}
@Override
public String toString()
{
StringBuffer sb = new StringBuffer();
sb.append("ImageTransformation [code=" + code + ", label=" + label);
if (description != null)
{
sb.append(", description=" + description);
}
sb.append(", isDefault=" + isDefault + "]");
return sb.toString();
}
}
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