The current code indentation/style is a little bit odd for Java conventions and some lines are really bad to read.
I honestly prefer this
// printing the links
if (ICC_SHOW_LINKS) {
List<ICCLinkInfo<IntentInfo>> links = resultsEntry.getValue().iccLinks;
for (ICCLinkInfo<IntentInfo> link : links) {
System.out.println(link);
}
}
Instead of this
// printing the links
if (ICC_SHOW_LINKS)
{
List<ICCLinkInfo<IntentInfo>> links = resultsEntry.getValue().iccLinks;
for (ICCLinkInfo<IntentInfo> link : links)
{
System.out.println(link);
}
}
PRO-Tip: Enable Save Actions on Eclipse

The current code indentation/style is a little bit odd for Java conventions and some lines are really bad to read.
I honestly prefer this
Instead of this
PRO-Tip: Enable Save Actions on Eclipse