diff --git a/Java/Debugger/src/edu/umich/soar/debugger/FrameList.java b/Java/Debugger/src/edu/umich/soar/debugger/FrameList.java index d6cff44222..bd6f04cf14 100644 --- a/Java/Debugger/src/edu/umich/soar/debugger/FrameList.java +++ b/Java/Debugger/src/edu/umich/soar/debugger/FrameList.java @@ -22,7 +22,7 @@ ********************************************************************************************/ public class FrameList { - private List m_List = new ArrayList<>(); + private final List m_List = new ArrayList<>(); public int size() { diff --git a/Java/Debugger/src/edu/umich/soar/debugger/MainFrame.java b/Java/Debugger/src/edu/umich/soar/debugger/MainFrame.java index 63cd5e8a91..0b1e1b06fd 100644 --- a/Java/Debugger/src/edu/umich/soar/debugger/MainFrame.java +++ b/Java/Debugger/src/edu/umich/soar/debugger/MainFrame.java @@ -383,9 +383,6 @@ public FontData ShowFontDialog() * * Close the window when the close box is clicked. * - * @param e - * Window closing event - * **************************************************************************/ private void thisWindowClosing() { diff --git a/Java/Debugger/src/edu/umich/soar/debugger/modules/AbstractComboView.java b/Java/Debugger/src/edu/umich/soar/debugger/modules/AbstractComboView.java index 75a194f7c0..c44ed2ebe6 100644 --- a/Java/Debugger/src/edu/umich/soar/debugger/modules/AbstractComboView.java +++ b/Java/Debugger/src/edu/umich/soar/debugger/modules/AbstractComboView.java @@ -597,7 +597,7 @@ protected void updateNow() * Execute a command (send it to Soar) and display the output in a manner * appropriate to this view. * - * @param Command + * @param command * The command line to execute * @param echoCommand * If true, display the command in the output window as well. diff --git a/Java/Debugger/src/edu/umich/soar/debugger/modules/AbstractView.java b/Java/Debugger/src/edu/umich/soar/debugger/modules/AbstractView.java index f6444ca39b..98958b7441 100644 --- a/Java/Debugger/src/edu/umich/soar/debugger/modules/AbstractView.java +++ b/Java/Debugger/src/edu/umich/soar/debugger/modules/AbstractView.java @@ -255,7 +255,7 @@ public abstract void loadFromXML(MainFrame frame, * Execute a command (send it to Soar) and display the output in a manner * appropriate to this view. * - * @param Command + * @param command * The command line to execute * @param echoCommand * If true, display the command in the output window as well. @@ -337,7 +337,7 @@ protected abstract void fillInContextMenu(Menu contextMenu, * @param wrap * If true after reaching the bottom, continue search from the * top - * @param searchHidden + * @param searchHiddenText * If true and this view has hidden text (e.g. unexpanded tree * nodes) search that text *