Доработки

This commit is contained in:
Hells Hound 2022-11-15 18:17:45 +04:00
parent deba91e044
commit 930a436de9
3 changed files with 0 additions and 3 deletions

View File

@ -28,7 +28,6 @@ public class FormWarshipCreator extends JDialog{
private DrawingWarship selectedWarship;
private boolean isModified = false;
public FormWarshipCreator(){
InitializeComponent();
}

View File

@ -104,7 +104,6 @@ public class MapWithSetWarshipsGeneric <T extends IDrawingObject,U extends Abstr
g.drawLine(i * _placeSizeWidth + _placeSizeWidth, j * _placeSizeHeight + _placeSizeHeight / 2, i * _placeSizeWidth+ (int)(_placeSizeWidth * 0.8), j * _placeSizeHeight + _placeSizeHeight);
}
}
}
private void DrawWarship(Graphics gr)

View File

@ -37,7 +37,6 @@ public class SetWarshipsGeneric<T extends Object>{
return 1;
}
public T Remove(int position)
{
if (position >= getCount() || position < 0 || _places[position] == null)