PIbd-21 Belianin N.N. LabWork03 Hard #4

Closed
Belnik wants to merge 21 commits from LabWork03 into LabWork02
Showing only changes of commit 585424fb62 - Show all commits

View File

@ -56,6 +56,6 @@ public class SetGeneric<T extends DrawingArmoVehicle> {
public T Get(int position) {
if (position < 0 || position >= _places.length)
return null;
return (T) _places[position];
return (T)_places[position];
}
}