Optimized code.

This commit is contained in:
Christian P. MOMON 2020-01-18 11:40:38 +01:00
parent 5b62d85bf0
commit ad51edcb07

View file

@ -293,9 +293,8 @@ public class TagDataManager
if (result == null)
{
this.idsDataById.setId(id, new SimpleTagData());
result = (SimpleTagData) this.idsDataById.getId(id);
result = new SimpleTagData();
this.idsDataById.setId(id, result);
}
//
@ -319,9 +318,8 @@ public class TagDataManager
TagDataListByIndex tags = (TagDataListByIndex) this.idsDataById.getId(id);
if (tags == null)
{
this.idsDataById.setId(id, new TagDataListByIndex());
tags = (TagDataListByIndex) this.idsDataById.getId(id);
tags = new TagDataListByIndex();
this.idsDataById.setId(id, tags);
}
// Be sure that lines are existing.
@ -357,9 +355,8 @@ public class TagDataManager
TagDataListByIndex tags = (TagDataListByIndex) this.idsDataById.getId(id);
if (tags == null)
{
this.idsDataById.setId(id, new TagDataListByIndex());
tags = (TagDataListByIndex) this.idsDataById.getId(id);
tags = new TagDataListByIndex();
this.idsDataById.setId(id, tags);
}
// Be sure that lines are existing.
@ -376,9 +373,8 @@ public class TagDataManager
if (result == null)
{
lineData.put(column, new SimpleTagData());
result = (SimpleTagData) lineData.get(column);
result = new SimpleTagData();
lineData.put(column, result);
}
//