Fixed base table static axis issue

This commit is contained in:
Robin 2021-10-04 09:32:42 +02:00
parent f5aff46072
commit 49797a1b82
2 changed files with 4 additions and 3 deletions

View File

@ -19,6 +19,7 @@
package com.romraider.maps;
import java.io.Serializable;
import java.text.ParseException;
import java.util.LinkedList;
import java.util.StringTokenizer;
@ -34,7 +35,8 @@ import com.romraider.util.NumberUtil;
import com.romraider.util.SettingsManager;
import com.romraider.xml.RomAttributeParser;
public class DataCell {
public class DataCell implements Serializable {
private static final long serialVersionUID = 1111479947434817639L;
private static final Logger LOGGER = Logger.getLogger(DataCell.class);
//View we need to keep up to date

View File

@ -84,7 +84,6 @@ public class TableScaleUnmarshaller {
if (!unmarshallAttribute(tableNode, "base", "none").equalsIgnoreCase(
"none")) { // copy base table for inheritance
try {
//Why is this needed?
table = (Table) ObjectCloner
.deepCopy(rom.getTableByName(unmarshallAttribute(tableNode,
"base", "none")));