Skip to content
This repository has been archived by the owner on Sep 8, 2019. It is now read-only.

Commit

Permalink
- update v1.0.1
Browse files Browse the repository at this point in the history
- fixed album pinning when sorting by name
  • Loading branch information
kollerlukas committed Oct 1, 2017
1 parent 19feb10 commit 488117a
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
* Heavily ispired by David Koelle's AlphanumComparator
* link: http://www.davekoelle.com/files/AlphanumComparator.java
*/

public class AlphanumNameComparator implements Comparator<SortUtil.Sortable> {
private boolean isDigit(char ch) {
return ((ch >= 48) && (ch <= 57));
Expand Down

0 comments on commit 488117a

Please sign in to comment.