Skip to content

Commit

Permalink
fix missing int_chr
Browse files Browse the repository at this point in the history
  • Loading branch information
ejvindh committed Mar 29, 2019
1 parent 3be3f71 commit bf9d1eb
Show file tree
Hide file tree
Showing 5 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .classpath
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@
<classpathentry kind="src" path="data"/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
<classpathentry kind="con" path="org.eclipse.fx.ide.jdt.core.JAVAFX_CONTAINER"/>
<classpathentry kind="lib" path="/media/eh/WINLINARB/arbejder/Dropbox/Prog_settings/Java/Gro2/Eclipse/sqlite-jdbc-3.7.2.jar"/>
<classpathentry kind="lib" path="/home/eh/Arbejder/Dropbox/Prog_settings/Java/Gro2/Eclipse/sqlite-jdbc-3.7.2.jar"/>
<classpathentry kind="output" path="bin"/>
</classpath>
Binary file modified JavaGro.jar
Binary file not shown.
Binary file modified bin/first/Dictionary.class
Binary file not shown.
Binary file modified bin/first/Gui.class
Binary file not shown.
2 changes: 1 addition & 1 deletion src/first/Dictionary.java
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public static String[][] lookup(boolean toD, boolean fromD, boolean eks, boolean
RandomAccessFile dat_file = new RandomAccessFile(dat_file_path, "r");
String search_string = search_string_orig.toLowerCase()
.replaceAll("[éèêë]", "e")
.replaceAll("[àâ]", "a")
.replaceAll("[àâä]", "a")
.replaceAll("[ùûü]", "u")
.replaceAll("[îï]", "i")
.replaceAll("[ôö]", "o")
Expand Down

0 comments on commit bf9d1eb

Please sign in to comment.