PIbd-21 Belianin N.N. LabWork07 Hard #10

Closed
Belnik wants to merge 8 commits from LabWork07 into LabWork06
Showing only changes of commit 4cc1f29e3e - Show all commits

View File

@ -29,14 +29,14 @@ public class TanksGenericStorage {
data.append(key).append("\n");
for (DrawingArmoVehicle elem: _tankStorages.get(key).getTanks(100)) {
if(_tankStorages.get(key) == null)
throw new InvalidPropertiesFormatException("");
throw new InvalidPropertiesFormatException("Ключ не найден. Сохранение невозможно");
if(_tankStorages.get(key) != null)
data.append(elem != null ? ExtentionDrawingTank.GetDataForSave(elem, _separatorForObjectWR) + "\n" : "");
}
if(data.length() == 0)
throw new InvalidStreamException("File not found, нет данных для сохранения");
throw new InvalidStreamException("Нет данных для сохранения");
try (BufferedWriter writer = new BufferedWriter(new FileWriter(filename))) {
writer.write("TankStorageSingle" + System.lineSeparator() + data.toString());
@ -110,7 +110,7 @@ public class TanksGenericStorage {
}
if (data.length() == 0)
throw new InvalidStreamException("File not found, нет данных для сохранения");
throw new InvalidStreamException("Нет данных для сохранения");
try (BufferedWriter writer = new BufferedWriter(new FileWriter(filename))) {
writer.write("TankStorage" + System.lineSeparator() + data.toString());