deleted unnecessary code

This commit is contained in:
Chumva 2018-03-21 13:58:43 +02:00
parent 61cddf0316
commit 0881c29273
2 changed files with 0 additions and 4 deletions

View file

@ -19,7 +19,6 @@ public abstract class AbstractPoiType {
private String poiAdditionalCategory;
private List<String> excludedPoiAdditionalCategories;
private String synonyms;
private String enSynonyms;
private String enTranslation;
private String translation;
@ -70,7 +69,6 @@ public abstract class AbstractPoiType {
public String getTranslation() {
if(translation == null) {
translation = registry.getTranslation(this);
}
@ -85,7 +83,6 @@ public abstract class AbstractPoiType {
}
public String getEnTranslation() {
if(enTranslation == null) {
enTranslation = registry.getEnTranslation(this);
}

View file

@ -352,7 +352,6 @@ public class AppInitializer implements IProgress {
return app.getString(in);
}
} catch (Exception e) {
LOG.debug("No translation for " + keyName + " " + e.getMessage());
}
return null;
}