commit | 066aaa98d389e7b754b7f9012e737a9fc06e7783 | [log] [tgz] |
---|---|---|
author | Victor Silva <victor@waltznetworks.com> | Tue Sep 20 11:54:31 2016 -0300 |
committer | Gerrit Code Review <gerrit@onlab.us> | Tue Sep 20 20:17:54 2016 +0000 |
tree | 5cb41ea45727b92d3b473c4df828752277afb51f | |
parent | 155370e957a4f06380bdf27f6f61eb5199a7f28d [diff] |
RegionEvent: fix documentation Description for REGION_REMOVED and REGION_UPDATED were mistakenly switched. Change-Id: I7b4dcb19980c47f544693d207ea12cf6ffd75e42
diff --git a/core/api/src/main/java/org/onosproject/net/region/RegionEvent.java b/core/api/src/main/java/org/onosproject/net/region/RegionEvent.java index 4a399bc..8dad91b 100644 --- a/core/api/src/main/java/org/onosproject/net/region/RegionEvent.java +++ b/core/api/src/main/java/org/onosproject/net/region/RegionEvent.java
@@ -36,12 +36,12 @@ 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,