Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Hotfix #879

Open
wants to merge 33 commits into
base: develop
Choose a base branch
from
Open

Hotfix #879

wants to merge 33 commits into from

Conversation

2karuitach
Copy link

No description provided.

tux-mind and others added 30 commits December 25, 2015 03:38
to put it over all the others widgets. Thanks to @0MazaHacka0 for reporting
it.
put out of the loop the check for adding dots to the domain.

fixes #21.
reorder TLD domains, to put simple domains (.us) at the end of the compounded domains of the same type (.com.us)
added a simple cache for already resolved TLDs.
also use a TreeSet to store them.
changed names a while.
use IOUtils from apache commons to move
pcap file from cache to storage.

I've also exported those small piece of code into a separate function.
 Even if we tell to Java to do this it ignore our preferences.
 We have to do this my hand.
fixed #637
fixed #651
fixed #652
fixed #675
@fat-tire
Copy link
Contributor

fat-tire commented Sep 3, 2018

Most of this is outdated. Is this still a viable PR or should it be closed?

t.setSelected(false);
synchronized (this) {
for (Target t : list)
t.setSelected(false);
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Always use curly braces
for (Target t : list){
t.setSelected(false);
}

synchronized (this) {
for (Target t : list)
t.setSelected(false);
}
notifyDataSetChanged();
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It is not mandatory to use notifyDataSetChanged always. if you want to update only one item in the list then you can use notifyItemChanged(position)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

5 participants