Commit 5ac47ceff785e461f16fca2a3c0e90103aad650e

Authored by Mickael Boiziot
1 parent 11205d24
Exists in master

Remove empty interface

src/main/java/eu/omp/irap/vespa/epntapclient/gui/resultpanel/ResultTabCtrl.java
... ... @@ -19,6 +19,7 @@ package eu.omp.irap.vespa.epntapclient.gui.resultpanel;
19 19 import java.util.logging.Logger;
20 20  
21 21 import eu.omp.irap.vespa.epntapclient.gui.mainpanel.MainPanelListener;
  22 +import eu.omp.irap.vespa.votable.gui.VOTablePanelListener;
22 23 import eu.omp.irap.vespa.votable.gui.VOTablePanelView;
23 24 import eu.omp.irap.vespa.votable.utils.StringJoiner;
24 25 import eu.omp.irap.vespa.votable.votable.VOTableCtrl;
... ... @@ -26,7 +27,7 @@ import eu.omp.irap.vespa.votable.votable.VOTableCtrl;
26 27 /**
27 28 * @author N. Jourdane
28 29 */
29   -public class ResultTabCtrl extends VOTableCtrl implements ResultTabListener {
  30 +public class ResultTabCtrl extends VOTableCtrl implements VOTablePanelListener {
30 31  
31 32 /** The logger for the class ResultPanelCtrl. */
32 33 private static final Logger LOGGER = Logger.getLogger(ResultTabCtrl.class.getName());
... ...
src/main/java/eu/omp/irap/vespa/epntapclient/gui/resultpanel/ResultTabListener.java deleted
... ... @@ -1,26 +0,0 @@
1   -/*
2   - * This file is a part of EpnTAPClient.
3   - * This program aims to provide EPN-TAP support for software clients, like CASSIS spectrum analyzer.
4   - * See draft specifications: https://voparis-confluence.obspm.fr/pages/viewpage.action?pageId=559861
5   - * Copyright (C) 2016 Institut de Recherche en Astrophysique et Planétologie.
6   - *
7   - * This program is free software: you can
8   - * redistribute it and/or modify it under the terms of the GNU General Public License as published
9   - * by the Free Software Foundation, either version 3 of the License, or (at your option) any later
10   - * version. This program is distributed in the hope that it will be useful, but WITHOUT ANY
11   - * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
12   - * PURPOSE. See the GNU General Public License for more details. You should have received a copy of
13   - * the GNU General Public License along with this program. If not, see
14   - * <http://www.gnu.org/licenses/>.
15   - */
16   -
17   -package eu.omp.irap.vespa.epntapclient.gui.resultpanel;
18   -
19   -import eu.omp.irap.vespa.votable.gui.VOTablePanelListener;
20   -
21   -/**
22   - * @author N. Jourdane
23   - */
24   -public interface ResultTabListener extends VOTablePanelListener {
25   -
26   -}