Make field final. #1555

Fixes `CanBeFinal` inspection violation.

Description:
>This inspection reports all fields, methods or classes, found in the specified inspection scope, that may have a final modifier added to their declarations.
This commit is contained in:
Michal Kordas 2015-08-08 11:57:44 +02:00 committed by Roman Ivanov
parent d9829fa230
commit 261e9a2bab
1 changed files with 1 additions and 1 deletions

View File

@ -105,7 +105,7 @@ public class JTreeTable extends JTable {
/** For Serialisation that will never happen. */
private static final long serialVersionUID = -8493693409423365387L;
/** A subclass of JTree. */
protected TreeTableCellRenderer tree;
protected final TreeTableCellRenderer tree;
private JTextArea editor;
private List<Integer> lines2position;