Committed by
Gerrit Code Review
ONOS-3200 unify code formation and fix grammar problem
Change-Id: Ibbe361ac68b9b5b6b779f11b4115c5d25e609feb
Showing
1 changed file
with
6 additions
and
5 deletions
... | @@ -21,7 +21,8 @@ import static com.google.common.base.Preconditions.checkNotNull; | ... | @@ -21,7 +21,8 @@ import static com.google.common.base.Preconditions.checkNotNull; |
21 | import java.util.Objects; | 21 | import java.util.Objects; |
22 | 22 | ||
23 | /** | 23 | /** |
24 | - * The class representing a ovsdb bridge. This class is immutable. | 24 | + * The class representing an ovsdb bridge. |
25 | + * This class is immutable. | ||
25 | */ | 26 | */ |
26 | public final class OvsdbBridge { | 27 | public final class OvsdbBridge { |
27 | 28 | ||
... | @@ -29,7 +30,7 @@ public final class OvsdbBridge { | ... | @@ -29,7 +30,7 @@ public final class OvsdbBridge { |
29 | private final OvsdbDatapathId datapathId; | 30 | private final OvsdbDatapathId datapathId; |
30 | 31 | ||
31 | /** | 32 | /** |
32 | - * Constructor from a OvsdbBridgeName bridgeName and a OvsdbDatapathId | 33 | + * Constructor from an OvsdbBridgeName bridgeName and an OvsdbDatapathId |
33 | * datapathId. | 34 | * datapathId. |
34 | * | 35 | * |
35 | * @param bridgeName the bridgeName to use | 36 | * @param bridgeName the bridgeName to use |
... | @@ -43,16 +44,16 @@ public final class OvsdbBridge { | ... | @@ -43,16 +44,16 @@ public final class OvsdbBridge { |
43 | } | 44 | } |
44 | 45 | ||
45 | /** | 46 | /** |
46 | - * Gets the bridge name of the bridge. | 47 | + * Gets the bridge name of bridge. |
47 | * | 48 | * |
48 | - * @return the bridge name of the bridge | 49 | + * @return the bridge name of bridge |
49 | */ | 50 | */ |
50 | public OvsdbBridgeName bridgeName() { | 51 | public OvsdbBridgeName bridgeName() { |
51 | return bridgeName; | 52 | return bridgeName; |
52 | } | 53 | } |
53 | 54 | ||
54 | /** | 55 | /** |
55 | - * Gets the datapathId of the bridge. | 56 | + * Gets the datapathId of bridge. |
56 | * | 57 | * |
57 | * @return datapathId the datapathId to use | 58 | * @return datapathId the datapathId to use |
58 | */ | 59 | */ | ... | ... |
-
Please register or login to post a comment