-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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
base: develop
Are you sure you want to change the base?
Hotfix #879
Conversation
to put it over all the others widgets. Thanks to @0MazaHacka0 for reporting it.
…o parse them as well.
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.
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); |
There was a problem hiding this comment.
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(); |
There was a problem hiding this comment.
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)
No description provided.