From: <dal...@us...> - 2023-09-07 19:53:40
|
Revision: 25668 http://sourceforge.net/p/jedit/svn/25668 Author: daleanson Date: 2023-09-07 19:53:38 +0000 (Thu, 07 Sep 2023) Log Message: ----------- PMD is your friend Modified Paths: -------------- plugins/JSON/trunk/src/json/options/JSONOptionPane.java Modified: plugins/JSON/trunk/src/json/options/JSONOptionPane.java =================================================================== --- plugins/JSON/trunk/src/json/options/JSONOptionPane.java 2023-09-07 19:53:17 UTC (rev 25667) +++ plugins/JSON/trunk/src/json/options/JSONOptionPane.java 2023-09-07 19:53:38 UTC (rev 25668) @@ -23,7 +23,6 @@ */ public class JSONOptionPane extends AbstractOptionPane { - private JLabel beautifierLabel; private JRadioButton attachedBrackets; private JRadioButton brokenBrackets; private int bracketStyle; @@ -44,7 +43,7 @@ setBorder( BorderFactory.createEmptyBorder( 6, 6, 6, 6 ) ); // create the components - beautifierLabel = new JLabel("<html><strong>JSON Beautifier"); + JLabel beautifierLabel = new JLabel("<html><strong>JSON Beautifier"); // Note that the Beauty plugin is a dependency, so it's okay to use // these properties from that plugin This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |