little javadoc fixes in DeckEditorDraft

This commit is contained in:
slapshot5
2012-01-06 03:33:30 +00:00
parent 3f02b7761d
commit ce05d7147a

View File

@@ -57,7 +57,7 @@ import forge.view.GuiTopLevel;
/** /**
* <p> * <p>
* Gui_BoosterDraft class. * DeckEditorDraft class.
* </p> * </p>
* *
* @author Forge * @author Forge
@@ -81,10 +81,8 @@ public class DeckEditorDraft extends DeckEditorBase {
// Pick on left-button double click // Pick on left-button double click
if (((e.getModifiers() & InputEvent.BUTTON1_MASK) != 0) && (e.getClickCount() == 2)) { if (((e.getModifiers() & InputEvent.BUTTON1_MASK) != 0) && (e.getClickCount() == 2)) {
DeckEditorDraft.this.jButtonPickClicked(null); DeckEditorDraft.this.jButtonPickClicked(null);
} else if ((e.getModifiers() & InputEvent.BUTTON3_MASK) != 0) { // pick } else if ((e.getModifiers() & InputEvent.BUTTON3_MASK) != 0) {
// on // pick on right click
// right
// click
final JTable table = DeckEditorDraft.this.getTopTableWithCards().getTable(); final JTable table = DeckEditorDraft.this.getTopTableWithCards().getTable();
final int rowNumber = table.rowAtPoint(e.getPoint()); final int rowNumber = table.rowAtPoint(e.getPoint());
// after hittest - if it was outside of rows - discard this // after hittest - if it was outside of rows - discard this