replaced string with variable

This commit is contained in:
voidplus
2014-11-13 11:48:36 +01:00
parent d84d33921c
commit ba06aaf45e
+2 -2
View File
@@ -149,8 +149,8 @@ public class Language {
String javaPath = new File(Base.class.getProtectionDomain().getCodeSource().getLocation().getFile()).getParentFile().getAbsolutePath();
try {
copyDirectory(
new File(javaPath+"/lib/languages"), // from shared library
Base.getSettingsFile("languages") // to editable library location
new File(javaPath+"/lib/languages"), // from shared library folder
langFiles // to editable settings folder
);
return true;
} catch (IOException e) {