Skip to content

Commit

Permalink
Remove debug main() leftover
Browse files Browse the repository at this point in the history
  • Loading branch information
OndraZizka authored and mareknovotny committed Sep 25, 2017
1 parent b4c2405 commit bcc281e
Showing 1 changed file with 0 additions and 9 deletions.
Expand Up @@ -132,13 +132,4 @@ public int compare(ApplicationReportModel o1, ApplicationReportModel o2)
}
}
}

///
public static void main(String[] args)
{
List<String> list = Arrays.asList(new String[]{"C", "b", "ab", "A", "D"});
//Collections.sort(list, Comparator.comparing((String str) -> str, String::compareToIgnoreCase));
Collections.sort(list, Comparator.comparing((String o) -> o, String::compareToIgnoreCase));
System.out.println("AppList sorted:\n " + String.join("\n ", list));
}
}

0 comments on commit bcc281e

Please sign in to comment.