deleted unnecessary code
This commit is contained in:
parent
61cddf0316
commit
0881c29273
2 changed files with 0 additions and 4 deletions
|
@ -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);
|
||||
}
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue