Tsukanova I.V. HardLabWork3 #5

Closed
Inohara wants to merge 5 commits from LabWork03 into LabWork2
3 changed files with 0 additions and 3 deletions
Showing only changes of commit 930a436de9 - Show all commits

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)