Start working on a folders support.

This commit is contained in:
Paulo Gustavo Veiga
2012-05-23 21:54:03 -03:00
parent 5498c681a4
commit 9bc4504aea
7 changed files with 157 additions and 143 deletions

View File

@@ -83,7 +83,11 @@ public class RestMindmap {
public String getLastModificationTime() {
final Calendar date = mindmap.getLastModificationTime();
return toISO8601(date.getTime());
String result = null;
if (date != null) {
result = toISO8601(date.getTime());
}
return result;
}
public boolean isPublic() {