Achaz / Achaz/imsdroid

Some code is not proper.

Open
#492 0 comments 0 reactions 0 assignees View on GitHub
auto-migrated Priority-Medium Type-Defect
Dominant language
Java
Stars
0
Forks
0
PR merge metrics
No merged PRs in 30d

Description

```
in NgnNetworkService.java

From
kvp = it.next();
final InetAddress address = kvp.getValue();

if (kvp.getKey().equal(USB_INTERFACE_NAME))
{
continue;
}
return address.getHostAddress();

to :

kvp = it.next();
final InetAddress address = kvp.getValue();

if (!kvp.getKey().contains(USB_INTERFACE_NAME))
{
continue;
}
return address.getHostAddress();

some device is not working, so must change it.

```

Original issue reported on code.google.com by `infoh...@gmail.com` on 15 Nov 2013 at 6:30

Contributor guide

No contributing guide indexed for this repository

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.