Skip to content

Commit

Permalink
Fix typo: bufferedWrited -> bufferedWriter
Browse files Browse the repository at this point in the history
  • Loading branch information
Adrianilloo committed Sep 9, 2019
1 parent a8b33a4 commit aebd4c5
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions JBUI/src/jbui/model/MaudeCommand.java
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,11 @@ boolean mustVanishOnProtocolLaunch()
return false;
}

void send(BufferedWriter bufferedWrited) throws IOException
void send(BufferedWriter bufferedWriter) throws IOException
{
bufferedWrited.write(mCommandText);
bufferedWrited.newLine();
bufferedWrited.flush();
bufferedWriter.write(mCommandText);
bufferedWriter.newLine();
bufferedWriter.flush();
}

AnswerableMaudeCommand toAnswerable()
Expand Down

0 comments on commit aebd4c5

Please sign in to comment.