Committed by
Gerrit Code Review
ONOS-3200 unify code formation and fix grammar problem
Change-Id: Ibc8ce09901a0b7a2a65700737882113aebed22e6
Showing
1 changed file
with
5 additions
and
4 deletions
| ... | @@ -21,13 +21,14 @@ import static com.google.common.base.Preconditions.checkNotNull; | ... | @@ -21,13 +21,14 @@ 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 tunnel name. This class is immutable. | 24 | + * The class representing a tunnel name. |
| 25 | + * This class is immutable. | ||
| 25 | */ | 26 | */ |
| 26 | public final class OvsdbTunnelName { | 27 | public final class OvsdbTunnelName { |
| 27 | private final String value; | 28 | private final String value; |
| 28 | 29 | ||
| 29 | /** | 30 | /** |
| 30 | - * Constructor from a String tunnel name. | 31 | + * Constructor from a String. |
| 31 | * | 32 | * |
| 32 | * @param value the tunnel name to use | 33 | * @param value the tunnel name to use |
| 33 | */ | 34 | */ |
| ... | @@ -37,9 +38,9 @@ public final class OvsdbTunnelName { | ... | @@ -37,9 +38,9 @@ public final class OvsdbTunnelName { |
| 37 | } | 38 | } |
| 38 | 39 | ||
| 39 | /** | 40 | /** |
| 40 | - * Gets the value of the tunnel name. | 41 | + * Gets the value of tunnel name. |
| 41 | * | 42 | * |
| 42 | - * @return the value of the tunnel name | 43 | + * @return the value of tunnel name |
| 43 | */ | 44 | */ |
| 44 | public String value() { | 45 | public String value() { |
| 45 | return value; | 46 | return value; | ... | ... |
-
Please register or login to post a comment