ONOS-3200 unify code formation and fix grammar problem
Change-Id: I7bfa850342ba039c18e8ff8fcdc67266a6e05b23
Showing
1 changed file
with
5 additions
and
4 deletions
... | @@ -20,13 +20,14 @@ import static com.google.common.base.Preconditions.checkNotNull; | ... | @@ -20,13 +20,14 @@ import static com.google.common.base.Preconditions.checkNotNull; |
20 | import java.util.Objects; | 20 | import java.util.Objects; |
21 | 21 | ||
22 | /** | 22 | /** |
23 | - * The class representing a datapathid. This class is immutable. | 23 | + * The class representing a datapathid. |
24 | + * This class is immutable. | ||
24 | */ | 25 | */ |
25 | public final class OvsdbDatapathId { | 26 | public final class OvsdbDatapathId { |
26 | private final String value; | 27 | private final String value; |
27 | 28 | ||
28 | /** | 29 | /** |
29 | - * Constructor from a String datapathid. | 30 | + * Constructor from a String. |
30 | * | 31 | * |
31 | * @param value the datapathid to use | 32 | * @param value the datapathid to use |
32 | */ | 33 | */ |
... | @@ -36,9 +37,9 @@ public final class OvsdbDatapathId { | ... | @@ -36,9 +37,9 @@ public final class OvsdbDatapathId { |
36 | } | 37 | } |
37 | 38 | ||
38 | /** | 39 | /** |
39 | - * Gets the value of the datapathid. | 40 | + * Gets the value of datapathid. |
40 | * | 41 | * |
41 | - * @return the value of the datapathid | 42 | + * @return the value of datapathid |
42 | */ | 43 | */ |
43 | public String value() { | 44 | public String value() { |
44 | return value; | 45 | return value; | ... | ... |
-
Please register or login to post a comment