GoGrid's images might have their description null. Return empty string in this case.

This commit is contained in:
tbatchelli MBP 2010-11-23 23:11:28 -08:00
parent 0b1fdb2ca2
commit 084a383cf5
1 changed files with 2 additions and 0 deletions

View File

@ -89,6 +89,8 @@ public class ServerImage implements Comparable<ServerImage> {
}
public String getDescription() {
if (description == null)
return "";
return description;
}