checkstyle fix

This commit is contained in:
Jindra Petřík
2023-11-05 21:11:10 +01:00
parent 982b44a0e6
commit 3d4c1a74c9
3 changed files with 3 additions and 3 deletions
@@ -88,7 +88,7 @@ public class DebugStackPanel extends JPanel {
int row = stackTable.rowAtPoint(e.getPoint());
if (row >= 0) {
String scriptName = (String) stackTable.getModel().getValueAt(row, 0);
int line = (int)(Integer) stackTable.getModel().getValueAt(row, 1);
int line = (int) (Integer) stackTable.getModel().getValueAt(row, 1);
Main.getMainFrame().getPanel().gotoScriptLine(Main.getMainFrame().getPanel().getCurrentSwf(),
scriptName, line, -1, -1, -1);
Main.getDebugHandler().setDepth(row);