Skip to content

Commit

Permalink
Various linting fixes
Browse files Browse the repository at this point in the history
* Fix variable names referenced in JavaDoc
* unchanging variable could be made final, which is always a win in my book!
  • Loading branch information
garfieldnate committed Feb 3, 2024
1 parent 9e40f53 commit b42b2a2
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Java/Debugger/src/edu/umich/soar/debugger/FrameList.java
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
********************************************************************************************/
public class FrameList
{
private List<MainFrame> m_List = new ArrayList<>();
private final List<MainFrame> m_List = new ArrayList<>();

public int size()
{
Expand Down
3 changes: 0 additions & 3 deletions Java/Debugger/src/edu/umich/soar/debugger/MainFrame.java
Original file line number Diff line number Diff line change
Expand Up @@ -383,9 +383,6 @@ public FontData ShowFontDialog()
*
* Close the window when the close box is clicked.
*
* @param e
* Window closing event
*
**************************************************************************/
private void thisWindowClosing()
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -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
*
Expand Down

0 comments on commit b42b2a2

Please sign in to comment.