Add compress fix.

This commit is contained in:
Paulo Gustavo Veiga
2013-03-29 15:44:49 -03:00
parent 3696e126e3
commit 4d46864388
7 changed files with 21 additions and 11 deletions

View File

@@ -68,5 +68,5 @@ public interface MindmapService {
boolean isAdmin(@Nullable User user);
void purgeHistory(int mapId);
void purgeHistory(int mapId) throws IOException;
}

View File

@@ -83,7 +83,7 @@ public class MindmapServiceImpl
}
@Override
public void purgeHistory(int mapId) {
public void purgeHistory(int mapId) throws IOException {
mindmapManager.purgeHistory(mapId);
}