Committed by
Gerrit Code Review
ONOS-3200 unify code formation and fix grammar problem
Change-Id: I0dd9348dea09d0f80c1d274005692363989c7de9
Showing
1 changed file
with
7 additions
and
7 deletions
| ... | @@ -29,18 +29,18 @@ public class OvsdbTableStore { | ... | @@ -29,18 +29,18 @@ public class OvsdbTableStore { |
| 29 | /** | 29 | /** |
| 30 | * Gets the ovsdbRowStore. | 30 | * Gets the ovsdbRowStore. |
| 31 | * | 31 | * |
| 32 | - * @param tableName a ovsdb table name | 32 | + * @param tableName an ovsdb table name |
| 33 | - * @return OvsdbRowStore the data of the table | 33 | + * @return OvsdbRowStore the data of table |
| 34 | */ | 34 | */ |
| 35 | public OvsdbRowStore getRows(String tableName) { | 35 | public OvsdbRowStore getRows(String tableName) { |
| 36 | return tableStore.get(tableName); | 36 | return tableStore.get(tableName); |
| 37 | } | 37 | } |
| 38 | 38 | ||
| 39 | /** | 39 | /** |
| 40 | - * Create or update a value to tableStore. | 40 | + * Creates or updates a value to tableStore. |
| 41 | * | 41 | * |
| 42 | - * @param tableName key of the tableName | 42 | + * @param tableName key of tableName |
| 43 | - * @param rowStore a row of the table | 43 | + * @param rowStore a row of table |
| 44 | */ | 44 | */ |
| 45 | public void createOrUpdateTable(String tableName, OvsdbRowStore rowStore) { | 45 | public void createOrUpdateTable(String tableName, OvsdbRowStore rowStore) { |
| 46 | tableStore.put(tableName, rowStore); | 46 | tableStore.put(tableName, rowStore); |
| ... | @@ -49,14 +49,14 @@ public class OvsdbTableStore { | ... | @@ -49,14 +49,14 @@ public class OvsdbTableStore { |
| 49 | /** | 49 | /** |
| 50 | * Drops a value to table data. | 50 | * Drops a value to table data. |
| 51 | * | 51 | * |
| 52 | - * @param tableName key of the tableName | 52 | + * @param tableName key of tableName |
| 53 | */ | 53 | */ |
| 54 | public void dropTable(String tableName) { | 54 | public void dropTable(String tableName) { |
| 55 | tableStore.remove(tableName); | 55 | tableStore.remove(tableName); |
| 56 | } | 56 | } |
| 57 | 57 | ||
| 58 | /** | 58 | /** |
| 59 | - * Gets the tableStore. | 59 | + * Gets tableStore. |
| 60 | * | 60 | * |
| 61 | * @return tableStore | 61 | * @return tableStore |
| 62 | */ | 62 | */ | ... | ... |
-
Please register or login to post a comment