From f1651dfb54f2c1f7690e913d12b07c32df6d2b71 Mon Sep 17 00:00:00 2001
From: dblouin <dominique.blouin@telecom-paristech.fr>
Date: Thu, 20 Jul 2017 14:38:17 +0200
Subject: [PATCH] Removed unused variable

---
 .../ui/window/JDialogSystemCGeneration.java     | 17 +++++++----------
 1 file changed, 7 insertions(+), 10 deletions(-)

diff --git a/src/main/java/ui/window/JDialogSystemCGeneration.java b/src/main/java/ui/window/JDialogSystemCGeneration.java
index 827bae0a4f..fed047dd55 100755
--- a/src/main/java/ui/window/JDialogSystemCGeneration.java
+++ b/src/main/java/ui/window/JDialogSystemCGeneration.java
@@ -37,9 +37,6 @@
  * knowledge of the CeCILL license and that you accept its terms.
  */
 
-
-
-
 package ui.window;
 
 import launcher.LauncherException;
@@ -74,7 +71,7 @@ import java.util.Vector;
  * @version 1.2 02/06/2014
  * @author Ludovic APVRILLE, Andrea ENRICI
  */
-public class JDialogSystemCGeneration extends javax.swing.JDialog implements ActionListener, Runnable, MasterProcessInterface, ListSelectionListener  {
+public class JDialogSystemCGeneration extends JDialog implements ActionListener, Runnable, MasterProcessInterface, ListSelectionListener  {
 
     protected MainGUI mgui;
 
@@ -149,7 +146,7 @@ public class JDialogSystemCGeneration extends javax.swing.JDialog implements Act
     public final static int FORMAL_VERIFICATION = 3;
 
     private int automatic;
-    private boolean wasClosed = false;
+  //  private boolean wasClosed = false;
 
 
     /** Creates new form  */
@@ -553,13 +550,13 @@ public class JDialogSystemCGeneration extends javax.swing.JDialog implements Act
 
         updateStaticList();
         optimizeModeSelected = optimizemode.isSelected();
-        wasClosed = true;
+       // wasClosed = true;
         dispose();
     }
-
-    public boolean wasClosed() {
-        return wasClosed;
-    }
+//
+//    public boolean wasClosed() {
+//        return wasClosed;
+//    }
 
     public void stopProcess() {
         try {
-- 
GitLab