Fix a typo in manufacturerDescription() method name
Change-Id: I8f95c6c0aa1ac6c59644828ddf2b82eea4c380a3
Showing
7 changed files
with
7 additions
and
7 deletions
... | @@ -88,7 +88,7 @@ public interface OpenFlowSwitch { | ... | @@ -88,7 +88,7 @@ public interface OpenFlowSwitch { |
88 | * fetch the manufacturer description. | 88 | * fetch the manufacturer description. |
89 | * @return the description | 89 | * @return the description |
90 | */ | 90 | */ |
91 | - public String manfacturerDescription(); | 91 | + public String manufacturerDescription(); |
92 | 92 | ||
93 | /** | 93 | /** |
94 | * fetch the datapath description. | 94 | * fetch the datapath description. | ... | ... |
... | @@ -347,7 +347,7 @@ public abstract class AbstractOpenFlowSwitch implements OpenFlowSwitchDriver { | ... | @@ -347,7 +347,7 @@ public abstract class AbstractOpenFlowSwitch implements OpenFlowSwitchDriver { |
347 | } | 347 | } |
348 | 348 | ||
349 | @Override | 349 | @Override |
350 | - public String manfacturerDescription() { | 350 | + public String manufacturerDescription() { |
351 | return this.desc.getMfrDesc(); | 351 | return this.desc.getMfrDesc(); |
352 | } | 352 | } |
353 | 353 | ... | ... |
... | @@ -146,7 +146,7 @@ public class RoleManagerTest { | ... | @@ -146,7 +146,7 @@ public class RoleManagerTest { |
146 | } | 146 | } |
147 | 147 | ||
148 | @Override | 148 | @Override |
149 | - public String manfacturerDescription() { | 149 | + public String manufacturerDescription() { |
150 | return null; | 150 | return null; |
151 | } | 151 | } |
152 | 152 | ... | ... |
... | @@ -188,7 +188,7 @@ public class OpenFlowDeviceProvider extends AbstractProvider implements DevicePr | ... | @@ -188,7 +188,7 @@ public class OpenFlowDeviceProvider extends AbstractProvider implements DevicePr |
188 | .set("protocol", sw.factory().getVersion().toString()).build(); | 188 | .set("protocol", sw.factory().getVersion().toString()).build(); |
189 | DeviceDescription description = | 189 | DeviceDescription description = |
190 | new DefaultDeviceDescription(did.uri(), deviceType, | 190 | new DefaultDeviceDescription(did.uri(), deviceType, |
191 | - sw.manfacturerDescription(), | 191 | + sw.manufacturerDescription(), |
192 | sw.hardwareDescription(), | 192 | sw.hardwareDescription(), |
193 | sw.softwareDescription(), | 193 | sw.softwareDescription(), |
194 | sw.serialNumber(), | 194 | sw.serialNumber(), | ... | ... |
... | @@ -344,7 +344,7 @@ public class OpenFlowDeviceProviderTest { | ... | @@ -344,7 +344,7 @@ public class OpenFlowDeviceProviderTest { |
344 | } | 344 | } |
345 | 345 | ||
346 | @Override | 346 | @Override |
347 | - public String manfacturerDescription() { | 347 | + public String manufacturerDescription() { |
348 | return null; | 348 | return null; |
349 | } | 349 | } |
350 | 350 | ... | ... |
... | @@ -448,7 +448,7 @@ public class OpenFlowLinkProviderTest { | ... | @@ -448,7 +448,7 @@ public class OpenFlowLinkProviderTest { |
448 | } | 448 | } |
449 | 449 | ||
450 | @Override | 450 | @Override |
451 | - public String manfacturerDescription() { | 451 | + public String manufacturerDescription() { |
452 | return null; | 452 | return null; |
453 | } | 453 | } |
454 | 454 | ... | ... |
... | @@ -381,7 +381,7 @@ public class OpenFlowPacketProviderTest { | ... | @@ -381,7 +381,7 @@ public class OpenFlowPacketProviderTest { |
381 | } | 381 | } |
382 | 382 | ||
383 | @Override | 383 | @Override |
384 | - public String manfacturerDescription() { | 384 | + public String manufacturerDescription() { |
385 | return null; | 385 | return null; |
386 | } | 386 | } |
387 | 387 | ... | ... |
-
Please register or login to post a comment