diff options
Diffstat (limited to 'libjava/javax/swing/text/JTextComponent.java')
-rw-r--r-- | libjava/javax/swing/text/JTextComponent.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libjava/javax/swing/text/JTextComponent.java b/libjava/javax/swing/text/JTextComponent.java index fa0040b..6b464b5 100644 --- a/libjava/javax/swing/text/JTextComponent.java +++ b/libjava/javax/swing/text/JTextComponent.java @@ -883,7 +883,8 @@ public abstract class JTextComponent extends JComponent return getUI().getEditorKit(this).getActions(); } - private Document doc; + // This is package-private to avoid an accessor method. + Document doc; private Caret caret; private Highlighter highlighter; private Color caretColor; |