Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
asmfstatoil committed Feb 22, 2024
1 parent 0f8503b commit 5133ef1
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1794,6 +1794,10 @@ public void setResultTable(String[][] resultTable) {
* </p>
*/
public void display() {
if (resultTable == null) {
return;
}

JFrame dialog = new JFrame("System-Report");
Container dialogContentPane = dialog.getContentPane();
dialogContentPane.setLayout(new BorderLayout());
Expand Down

0 comments on commit 5133ef1

Please sign in to comment.