RegionStore.save(Region added[], Region updated[], Region removed[]) throws IOException as well.

This commit is contained in:
sk89q 2012-11-16 13:42:59 -08:00
parent 386288b89a
commit c864a1c252

View File

@ -59,6 +59,6 @@ public interface RegionStore {
* @param updated a list of regions that were updated
* @param removed a list of regions that were removed
*/
void save(Region added[], Region updated[], Region removed[]);
void save(Region added[], Region updated[], Region removed[]) throws IOException;
}