Мелкие исправления
This commit is contained in:
parent
b1d13cb621
commit
bc5e326d4c
@ -262,7 +262,7 @@ public class FormMapWithArmoredCars extends JFrame{
|
||||
fd.setVisible(true);
|
||||
String filename = fd.getFile();
|
||||
if (filename != null) {
|
||||
if (type.contains("Файл")) {
|
||||
if (type.equals("Файл")) {
|
||||
if (_mapsCollection.SaveData(fd.getDirectory() + filename))
|
||||
{
|
||||
JOptionPane.showMessageDialog(null, "Сохранение прошло успешно");
|
||||
@ -270,7 +270,7 @@ public class FormMapWithArmoredCars extends JFrame{
|
||||
else {
|
||||
JOptionPane.showMessageDialog(null, "Не сохранилось");
|
||||
}
|
||||
} else if (type.contains("Файл карты")){
|
||||
} else if (type.equals("Файл карты")){
|
||||
if (_mapsCollection.SaveDataMap(fd.getDirectory() + filename, (String) listBoxMaps.getSelectedValue())) {
|
||||
JOptionPane.showMessageDialog(null, "Сохранение прошло успешно");
|
||||
} else {
|
||||
@ -286,7 +286,7 @@ public class FormMapWithArmoredCars extends JFrame{
|
||||
fd.setVisible(true);
|
||||
String filename = fd.getFile();
|
||||
if (filename != null) {
|
||||
if (type.contains("Файл")) {
|
||||
if (type.equals("Файл")) {
|
||||
if (_mapsCollection.LoadData(fd.getDirectory() + filename))
|
||||
{
|
||||
JOptionPane.showMessageDialog(null, "Загрузка прошла успешно");
|
||||
@ -295,7 +295,7 @@ public class FormMapWithArmoredCars extends JFrame{
|
||||
else {
|
||||
JOptionPane.showMessageDialog(null, "Не загрузилось");
|
||||
}
|
||||
} else if (type.contains("Файл карты")){
|
||||
} else if (type.equals("Файл карты")){
|
||||
if (_mapsCollection.LoadDataMap(fd.getDirectory() + filename)) {
|
||||
JOptionPane.showMessageDialog(null, "Загрузка прошла успешно");
|
||||
ReloadMaps();
|
||||
|
@ -82,7 +82,7 @@ public class MapsCollection {
|
||||
return false;
|
||||
String line;
|
||||
while ((line = reader.readLine()) != null) {
|
||||
var elem = line.split(String.valueOf(separatorDict));
|
||||
var elem = line.split(String.valueOf(separatorDict), -1);
|
||||
AbstractMap map = null;
|
||||
switch (elem[1]) {
|
||||
case "SimpleMap":
|
||||
@ -137,7 +137,7 @@ public class MapsCollection {
|
||||
if (!reader.readLine().contains("One Map"))
|
||||
return false;
|
||||
String line = reader.readLine();
|
||||
var elem = line.split(String.valueOf(separatorDict));
|
||||
var elem = line.split(String.valueOf(separatorDict), -1);
|
||||
AbstractMap map = null;
|
||||
switch (elem[1]) {
|
||||
case "SimpleMap":
|
||||
|
Loading…
Reference in New Issue
Block a user