fix accidental use of Java 8 function in Translator_p

thanks to luccioman
This commit is contained in:
reger 2016-06-03 21:42:14 +02:00
parent 1dcb9c5158
commit e46245b819

View File

@ -100,7 +100,7 @@ public class Translator_p {
if (sourcetext.endsWith("<") && !t.endsWith("<")) t=t+"<";
}
targettxt = t;
origTextList.replace(sourcetext, targettxt);
origTextList.put(sourcetext, targettxt);
changed = true;
}
prop.putHTML("textlist_" + i + "_sourcetxt", sourcetext);