File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
src/test/java/org/apache/commons/codec/language/bm Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -189,7 +189,7 @@ public void testSetRuleTypeToRulesIllegalArgumentException() {
189189 */
190190 @ Test /* timeout = 20000L */
191191 public void testSpeedCheck () throws EncoderException {
192- final BeiderMorseEncoder bmpm = this . createGenericApproxEncoder ();
192+ final BeiderMorseEncoder bmpm = createGenericApproxEncoder ();
193193 final StringBuilder stringBuffer = new StringBuilder ();
194194 stringBuffer .append (TEST_CHARS [0 ]);
195195 for (int i = 0 , j = 1 ; i < 40 ; i ++, j ++) {
@@ -203,7 +203,7 @@ public void testSpeedCheck() throws EncoderException {
203203
204204 @ Test
205205 public void testSpeedCheck2 () throws EncoderException {
206- final BeiderMorseEncoder bmpm = this . createGenericApproxEncoder ();
206+ final BeiderMorseEncoder bmpm = createGenericApproxEncoder ();
207207 final String phrase = "ItstheendoftheworldasweknowitandIfeelfine" ;
208208
209209 for (int i = 1 ; i <= phrase .length (); i ++) {
@@ -213,7 +213,7 @@ public void testSpeedCheck2() throws EncoderException {
213213
214214 @ Test
215215 public void testSpeedCheck3 () throws EncoderException {
216- final BeiderMorseEncoder bmpm = this . createGenericApproxEncoder ();
216+ final BeiderMorseEncoder bmpm = createGenericApproxEncoder ();
217217 final String phrase = "abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyz" ;
218218
219219 for (int i = 1 ; i <= phrase .length (); i ++) {
You can’t perform that action at this time.
0 commit comments