баг фикс

This commit is contained in:
Данила Мочалов 2022-11-19 19:58:47 +04:00
parent 9f39107385
commit 2fe33e7569
2 changed files with 2 additions and 2 deletions

View File

@ -198,7 +198,7 @@ public class DrawningLocomotive {
new Color(Integer.parseInt(strs[2]), Integer.parseInt(strs[3]), Integer.parseInt(strs[4])), new Color(Integer.parseInt(strs[2]), Integer.parseInt(strs[3]), Integer.parseInt(strs[4])),
new Color(Integer.parseInt(strs[7]), Integer.parseInt(strs[8]), Integer.parseInt(strs[9])), new Color(Integer.parseInt(strs[7]), Integer.parseInt(strs[8]), Integer.parseInt(strs[9])),
Boolean.parseBoolean(strs[10]), Boolean.parseBoolean(strs[10]),
Boolean.getBoolean(strs[11]) Boolean.parseBoolean(strs[11])
); );
return new DrawningWarmlyLocomotive(Locomotive, drawningExtra); return new DrawningWarmlyLocomotive(Locomotive, drawningExtra);
} }

View File

@ -15,7 +15,7 @@ public class MapsCollection {
/// Высота окна отрисовки /// Высота окна отрисовки
private final int _pictureHeight; private final int _pictureHeight;
// Сепараторы // Сепараторы
private final String separatorDict = "\\|"; private final String separatorDict = "~";
private final char separatorData = ';'; private final char separatorData = ';';
/// Конструктор /// Конструктор
public MapsCollection(int pictureWidth, int pictureHeight) public MapsCollection(int pictureWidth, int pictureHeight)