Skip to content

Commit

Permalink
Update TextArea.java
Browse files Browse the repository at this point in the history
  • Loading branch information
ImmediandoSrl authored Jun 16, 2024
1 parent ee18b59 commit 5bfdfdc
Showing 1 changed file with 0 additions and 15 deletions.
15 changes: 0 additions & 15 deletions CodenameOne/src/com/codename1/ui/TextArea.java
Original file line number Diff line number Diff line change
Expand Up @@ -2196,21 +2196,6 @@ public ActionListener getDoneListener() {
/**
* Fire the done event to done listener
*/
public void fireDoneEvent() {
if (doneListener != null) {
if (!Display.getInstance().isEdt()) {
Display.getInstance().callSerially(new Runnable() {

public void run() {
fireDoneEvent();
}
});
return;
}
doneListener.actionPerformed(new ActionEvent(this,ActionEvent.Type.Done));
}
}

public void fireDoneEvent(int keyEvent) {
if (doneListener != null) {
if (!Display.getInstance().isEdt()) {
Expand Down

0 comments on commit 5bfdfdc

Please sign in to comment.