Skip to content
This repository has been archived by the owner on Oct 11, 2024. It is now read-only.

Commit

Permalink
The style of the code has been improved.
Browse files Browse the repository at this point in the history
  • Loading branch information
TheMegistone4Ever committed Jun 14, 2024
1 parent b9a8f33 commit efe3e50
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 6 deletions.
6 changes: 1 addition & 5 deletions src/main/java/com/nickmegistone/form/InitForm.java
Original file line number Diff line number Diff line change
Expand Up @@ -251,11 +251,7 @@ private void searchMouseClicked(java.awt.event.MouseEvent evt) {//GEN-FIRST:even
synchronized (lockConnection) {
lockConnection.notifyAll();
}
if (synthesizerIsSpeaking) {
signalSearch(SYNTHESIZER_IS_SPEAKING, false);
} else {
signalSearch(SEARCH_WHEN_CLICKED, true);
}
signalSearch(synthesizerIsSpeaking ? SYNTHESIZER_IS_SPEAKING : SEARCH_WHEN_CLICKED, !synthesizerIsSpeaking);
}//GEN-LAST:event_searchMouseClicked

private void formMouseClicked(java.awt.event.MouseEvent evt) {//GEN-FIRST:event_formMouseClicked
Expand Down
1 change: 0 additions & 1 deletion src/main/java/com/nickmegistone/vocaliamaven/Vocalia.java
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@

import static com.nickmegistone.apputils.AppUtils.*;

// TODO: Add full docker support
public class Vocalia extends javax.swing.JFrame {

private final InitForm initForm;
Expand Down

0 comments on commit efe3e50

Please sign in to comment.