Фикс мелких ошибок.

This commit is contained in:
Programmist73 2022-11-08 01:40:05 +04:00
parent 403ea0d203
commit 8561691deb
2 changed files with 6 additions and 5 deletions

View File

@ -44,6 +44,7 @@ namespace Airbus
public string GetInfo() => _airbus?.GetDataForSave(); public string GetInfo() => _airbus?.GetDataForSave();
public static IDrawningObject Create(string data) => new IDrawningObject(data.CreateDrawningPlane()); public static IDrawningObject Create(string data) => new DrawningObjectPlane(data.CreateDrawningPlane());
} }
} }

View File

@ -49,14 +49,14 @@ namespace Airbus
_mapStorage.Remove(name); _mapStorage.Remove(name);
} }
// Метод записи информации в файл //метод записи информации в файл
private static void WriteToFile(string text, FileStream stream) private static void WriteToFile(string text, FileStream stream)
{ {
byte[] info = new UTF8Encoding(true).GetBytes(text); byte[] info = new UTF8Encoding(true).GetBytes(text);
stream.Write(info, 0, info.Length); stream.Write(info, 0, info.Length);
} }
// Сохранение информации по автомобилям в хранилище в файл //сохранение информации по самолётам в ангарах в файл
public bool SaveData(string filename) public bool SaveData(string filename)
{ {
if (File.Exists(filename)) if (File.Exists(filename))
@ -78,7 +78,7 @@ namespace Airbus
return true; return true;
} }
// Загрузка нформации по автомобилям на парковках из файла //загрузка нформации по по самолётам в ангарах из файла
public bool LoadData(string filename) public bool LoadData(string filename)
{ {
if (!File.Exists(filename)) if (!File.Exists(filename))
@ -138,7 +138,7 @@ namespace Airbus
} }
//Доступ к аэродрому //доступ к аэродрому
public MapWithSetPlanesGeneric<IDrawningObject, AbstractMap> this[string ind] public MapWithSetPlanesGeneric<IDrawningObject, AbstractMap> this[string ind]
{ {
get get