Skip to content

Commit

Permalink
Fix map for new unicode tables
Browse files Browse the repository at this point in the history
  • Loading branch information
gcardone committed Sep 23, 2018
1 parent e338ebe commit 4643fc1
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/main/java/net/gcardone/junidecode/Junidecode.java
Expand Up @@ -130,19 +130,19 @@ public static String unidecode(final String s) {
case 0x18:
map = X18.map;
break;
case 0x18:
case 0x19:
map = X19.map;
break;
case 0x18:
case 0x1a:
map = X1a.map;
break;
case 0x18:
case 0x1b:
map = X1b.map;
break;
case 0x18:
case 0x1c:
map = X1c.map;
break;
case 0x18:
case 0x1d:
map = X1d.map;
break;
case 0x1e:
Expand Down

0 comments on commit 4643fc1

Please sign in to comment.