mirror of https://github.com/apache/jclouds.git
GoGrid's images might have their description null. Return empty string in this case.
This commit is contained in:
parent
0b1fdb2ca2
commit
084a383cf5
|
@ -89,6 +89,8 @@ public class ServerImage implements Comparable<ServerImage> {
|
|||
}
|
||||
|
||||
public String getDescription() {
|
||||
if (description == null)
|
||||
return "";
|
||||
return description;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue