Victor Silva
Committed by Gerrit Code Review

RegionEvent: fix documentation

Description for REGION_REMOVED and REGION_UPDATED were mistakenly
switched.

Change-Id: I7b4dcb19980c47f544693d207ea12cf6ffd75e42
......@@ -36,12 +36,12 @@ public class RegionEvent extends AbstractEvent<RegionEvent.Type, Region> {
REGION_ADDED,
/**
* Signifies that a region was updated.
* Signifies that a region was removed.
*/
REGION_REMOVED,
/**
* Signifies that a region was removed.
* Signifies that a region was updated.
*/
REGION_UPDATED,
......