Refactoring

This commit is contained in:
marcin.sciesinski
2018-05-17 17:00:00 -07:00
parent 2f59b0a181
commit 0e25bb6837

View File

@@ -99,9 +99,7 @@ public class LotroFormatLibrary {
_allFormats.put(formatCode, format);
Boolean hallFormat = (Boolean) formatDef.get("hall");
if (hallFormat == null)
hallFormat = true;
if (hallFormat)
if (hallFormat == null || hallFormat)
_hallFormats.put(formatCode, format);
}
} catch (ParseException exp) {