Fixed Javadoc Warnings
Change-Id: I7318f221fd0f2d391bb4d5b6c0a948c009869f19
Showing
2 changed files
with
4 additions
and
22 deletions
... | @@ -39,13 +39,15 @@ public class OspfMessageEncoder extends OneToOneEncoder { | ... | @@ -39,13 +39,15 @@ public class OspfMessageEncoder extends OneToOneEncoder { |
39 | 39 | ||
40 | 40 | ||
41 | /** | 41 | /** |
42 | - * Constructor. | 42 | + * Creates an instance of OSPF message encoder. |
43 | */ | 43 | */ |
44 | OspfMessageEncoder() { | 44 | OspfMessageEncoder() { |
45 | } | 45 | } |
46 | 46 | ||
47 | /** | 47 | /** |
48 | - * Constructor to initialize instance. | 48 | + * Creates an instance of OSPF message encoder. |
49 | + * | ||
50 | + * @param ospfInterface OSPF interface instance | ||
49 | */ | 51 | */ |
50 | OspfMessageEncoder(OspfInterface ospfInterface) { | 52 | OspfMessageEncoder(OspfInterface ospfInterface) { |
51 | this.ospfInterface = ospfInterface; | 53 | this.ospfInterface = ospfInterface; | ... | ... |
protocols/ospf/ctl/src/main/java/org/onosproject/ospf/controller/package-info.java
deleted
100755 → 0
1 | -/* | ||
2 | - * Copyright 2016 Open Networking Laboratory | ||
3 | - * | ||
4 | - * Licensed under the Apache License, Version 2.0 (the "License"); | ||
5 | - * you may not use this file except in compliance with the License. | ||
6 | - * You may obtain a copy of the License at | ||
7 | - * | ||
8 | - * http://www.apache.org/licenses/LICENSE-2.0 | ||
9 | - * | ||
10 | - * Unless required by applicable law or agreed to in writing, software | ||
11 | - * distributed under the License is distributed on an "AS IS" BASIS, | ||
12 | - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
13 | - * See the License for the specific language governing permissions and | ||
14 | - * limitations under the License. | ||
15 | - */ | ||
16 | - | ||
17 | -/** | ||
18 | - * Implementation of the OSPF controller. | ||
19 | - */ | ||
20 | -package org.onosproject.ospf.controller; | ||
... | \ No newline at end of file | ... | \ No newline at end of file |
-
Please register or login to post a comment