mirror of
https://github.com/arduino/Arduino.git
synced 2024-12-02 13:24:12 +01:00
Fixed I18NTest
This commit is contained in:
parent
5f6cbfbccd
commit
a1d63c27d8
@ -9,7 +9,7 @@ public class I18NTest {
|
|||||||
|
|
||||||
private Set<String> loadReferenceI18NKeys() throws IOException {
|
private Set<String> loadReferenceI18NKeys() throws IOException {
|
||||||
Properties properties = new Properties();
|
Properties properties = new Properties();
|
||||||
properties.putAll(loadProperties(new File(I18NTest.class.getResource("./Resources_en.properties").getFile())));
|
properties.putAll(loadProperties(new File(I18NTest.class.getResource("./i18n/Resources_en.properties").getFile())));
|
||||||
Set<String> keys = new HashSet<String>();
|
Set<String> keys = new HashSet<String>();
|
||||||
for (Object key : properties.keySet()) {
|
for (Object key : properties.keySet()) {
|
||||||
keys.add(key.toString());
|
keys.add(key.toString());
|
||||||
|
Loading…
Reference in New Issue
Block a user