001package jmri.jmrit.jython; 002 003/** 004 * This class is left in place so that existing preferences will still work until they 005 * are migrated. Do not use. 006 * 007 * @author Bob Jacobsen Copyright (C) 2004, 2022 008 * @deprecated For removal after JMRI 5.2 009 */ 010@Deprecated(forRemoval=true) 011@edu.umd.cs.findbugs.annotations.SuppressFBWarnings(value="NM_SAME_SIMPLE_NAME_AS_SUPERCLASS", 012 justification="Deliberate shadowing to migrate preferences files") 013public class InputWindowAction extends jmri.script.swing.InputWindowAction { 014 // everything is deferred to jmri.script.swing.InputWindowAction 015}