Index: applications/editors/josm/plugins/reverter/src/reverter/ObjectsHistoryAction.java
===================================================================
--- applications/editors/josm/plugins/reverter/src/reverter/ObjectsHistoryAction.java	(revision 34972)
+++ 	(revision )
@@ -1,28 +1,0 @@
-// License: GPL. For details, see LICENSE file.
-package reverter;
-
-import static org.openstreetmap.josm.tools.I18n.tr;
-
-import java.awt.event.ActionEvent;
-import java.awt.event.KeyEvent;
-
-import org.openstreetmap.josm.actions.JosmAction;
-import org.openstreetmap.josm.tools.Shortcut;
-
-@SuppressWarnings("serial")
-public class ObjectsHistoryAction extends JosmAction {
-
-    public ObjectsHistoryAction() {
-        super(tr("Objects history"), null, tr("History reverter"),
-            Shortcut.registerShortcut("tool:history",
-                tr("Tool: Display objects history dialog"),
-                KeyEvent.VK_H, Shortcut.ALT_CTRL_SHIFT),
-                true);
-        setEnabled(false);
-    }
-
-    @Override
-    public void actionPerformed(ActionEvent arg0) {
-        new ObjectsHistoryDialog().setVisible(true);
-    }
-}
Index: applications/editors/josm/plugins/reverter/src/reverter/ObjectsHistoryDialog.java
===================================================================
--- applications/editors/josm/plugins/reverter/src/reverter/ObjectsHistoryDialog.java	(revision 34972)
+++ 	(revision )
@@ -1,23 +1,0 @@
-// License: GPL. For details, see LICENSE file.
-package reverter;
-
-import static org.openstreetmap.josm.tools.I18n.tr;
-
-import java.awt.GridBagLayout;
-import java.awt.Insets;
-
-import javax.swing.JPanel;
-
-import org.openstreetmap.josm.gui.ExtendedDialog;
-import org.openstreetmap.josm.gui.MainApplication;
-
-@SuppressWarnings("serial")
-public class ObjectsHistoryDialog extends ExtendedDialog {
-    public ObjectsHistoryDialog() {
-        super(MainApplication.getMainFrame(), tr("Objects history"), new String[] {"Revert", "Cancel"}, false);
-        contentInsets = new Insets(10, 10, 10, 5);
-        setButtonIcons(new String[] {"ok.png", "cancel.png" });
-        setContent(new JPanel(new GridBagLayout()));
-        setupDialog();
-    }
-}
