get rid of printlns

dbus-notify
Zlatin Balevsky 2022-06-08 18:31:09 +01:00
parent af21cae225
commit 71a6ebf096
No known key found for this signature in database
GPG Key ID: A72832072D525E41
1 changed files with 0 additions and 2 deletions

View File

@ -19,7 +19,6 @@ class ChatTextField extends JTextField {
@Override
void insertString(int offs, String str, AttributeSet a) throws BadLocationException {
println "inserting string $str"
getDocumentProperties().put("filterNewlines", false)
super.insertString(offs, str, a)
}
@ -27,7 +26,6 @@ class ChatTextField extends JTextField {
@Override
String getText(int offset, int length) throws BadLocationException {
String rv = super.getText(offset, length)
println "getting string $rv"
return rv
}
}