Commit d8b4bf6ce6ff1e32df204e673e617394ada8c9e0
1 parent
a77b08d7
Exists in
master
and in
1 other branch
Comment line who checks the EDT violation.
Showing
1 changed file
with
1 additions
and
2 deletions
Show diff stats
src/main/java/eu/omp/irap/vespa/votable/VOTableApp.java
... | ... | @@ -19,7 +19,6 @@ package eu.omp.irap.vespa.votable; |
19 | 19 | import java.util.logging.Logger; |
20 | 20 | |
21 | 21 | import javax.swing.JFrame; |
22 | -import javax.swing.RepaintManager; | |
23 | 22 | import javax.swing.SwingUtilities; |
24 | 23 | |
25 | 24 | import eu.omp.irap.vespa.votable.gui.VOTablePanelCtrl; |
... | ... | @@ -50,7 +49,7 @@ public class VOTableApp { |
50 | 49 | * @param args The program arguments |
51 | 50 | */ |
52 | 51 | public static void main(final String[] args) { |
53 | - RepaintManager.setCurrentManager(new CheckThreadViolationRepaintManager()); | |
52 | + // RepaintManager.setCurrentManager(new CheckThreadViolationRepaintManager()); | |
54 | 53 | LOGGER.info("Lauching VOTable app with arguments: " + StringJoiner.join(args)); |
55 | 54 | |
56 | 55 | SwingUtilities.invokeLater(new Runnable() { | ... | ... |