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 String poiAdditionalCategory;
|
||||||
private List<String> excludedPoiAdditionalCategories;
|
private List<String> excludedPoiAdditionalCategories;
|
||||||
private String synonyms;
|
private String synonyms;
|
||||||
private String enSynonyms;
|
|
||||||
private String enTranslation;
|
private String enTranslation;
|
||||||
private String translation;
|
private String translation;
|
||||||
|
|
||||||
|
@ -70,7 +69,6 @@ public abstract class AbstractPoiType {
|
||||||
|
|
||||||
|
|
||||||
public String getTranslation() {
|
public String getTranslation() {
|
||||||
|
|
||||||
if(translation == null) {
|
if(translation == null) {
|
||||||
translation = registry.getTranslation(this);
|
translation = registry.getTranslation(this);
|
||||||
}
|
}
|
||||||
|
@ -85,7 +83,6 @@ public abstract class AbstractPoiType {
|
||||||
}
|
}
|
||||||
|
|
||||||
public String getEnTranslation() {
|
public String getEnTranslation() {
|
||||||
|
|
||||||
if(enTranslation == null) {
|
if(enTranslation == null) {
|
||||||
enTranslation = registry.getEnTranslation(this);
|
enTranslation = registry.getEnTranslation(this);
|
||||||
}
|
}
|
||||||
|
|
|
@ -352,7 +352,6 @@ public class AppInitializer implements IProgress {
|
||||||
return app.getString(in);
|
return app.getString(in);
|
||||||
}
|
}
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
LOG.debug("No translation for " + keyName + " " + e.getMessage());
|
|
||||||
}
|
}
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue