Mochalov D.V. Hard LabWork06 #6

Closed
b0n3l3sS wants to merge 8 commits from LabWork06 into LabWork05
2 changed files with 2 additions and 2 deletions
Showing only changes of commit 2fe33e7569 - Show all commits

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[7]), Integer.parseInt(strs[8]), Integer.parseInt(strs[9])),
Boolean.parseBoolean(strs[10]),
Boolean.getBoolean(strs[11])
Boolean.parseBoolean(strs[11])
);
return new DrawningWarmlyLocomotive(Locomotive, drawningExtra);
}

View File

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