Skip to content

Commit

Permalink
Remove redundant keywords
Browse files Browse the repository at this point in the history
  • Loading branch information
garydgregory committed Jul 9, 2024
1 parent 1e6544e commit 0c82238
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ public void testSetRuleTypeToRulesIllegalArgumentException() {
*/
@Test /* timeout = 20000L */
public void testSpeedCheck() throws EncoderException {
final BeiderMorseEncoder bmpm = this.createGenericApproxEncoder();
final BeiderMorseEncoder bmpm = createGenericApproxEncoder();
final StringBuilder stringBuffer = new StringBuilder();
stringBuffer.append(TEST_CHARS[0]);
for (int i = 0, j = 1; i < 40; i++, j++) {
Expand All @@ -203,7 +203,7 @@ public void testSpeedCheck() throws EncoderException {

@Test
public void testSpeedCheck2() throws EncoderException {
final BeiderMorseEncoder bmpm = this.createGenericApproxEncoder();
final BeiderMorseEncoder bmpm = createGenericApproxEncoder();
final String phrase = "ItstheendoftheworldasweknowitandIfeelfine";

for (int i = 1; i <= phrase.length(); i++) {
Expand All @@ -213,7 +213,7 @@ public void testSpeedCheck2() throws EncoderException {

@Test
public void testSpeedCheck3() throws EncoderException {
final BeiderMorseEncoder bmpm = this.createGenericApproxEncoder();
final BeiderMorseEncoder bmpm = createGenericApproxEncoder();
final String phrase = "abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyz";

for (int i = 1; i <= phrase.length(); i++) {
Expand Down

0 comments on commit 0c82238

Please sign in to comment.