pack();
}// </editor-fold>//GEN-END:initComponents
private void removeButtonActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_removeButtonActionPerformed
RemoveWordService serviceCall = new RemoveWordService();
if(!wordInput.getText().equals("")){
if(serviceCall.removeWord(wordInput.getText())) {
statusLabel.setText("<html>Your word has been removed!<html>");
}else {
statusLabel.setText("<html>There was an error when removing your word.<html>");
}