| Index: javatests/org/chromium/distiller/StringUtilTest.java
|
| diff --git a/javatests/org/chromium/distiller/StringUtilTest.java b/javatests/org/chromium/distiller/StringUtilTest.java
|
| index 246206dee27610e2c28be48c4855d9cfc3a5702e..51c6da0f12a7f92aaeab9f156546aecd334f6cbe 100644
|
| --- a/javatests/org/chromium/distiller/StringUtilTest.java
|
| +++ b/javatests/org/chromium/distiller/StringUtilTest.java
|
| @@ -5,12 +5,15 @@
|
| package org.chromium.distiller;
|
|
|
| import com.google.gwt.regexp.shared.RegExp;
|
| +
|
| +import org.chromium.distiller.StringUtil.WordCounter;
|
| +
|
| import java.util.ArrayList;
|
| import java.util.List;
|
|
|
| public class StringUtilTest extends JsTestCase {
|
| public void testFastWordCounter() {
|
| - List<StringUtil.WordCounter> counters = new ArrayList();
|
| + List<StringUtil.WordCounter> counters = new ArrayList<WordCounter>();
|
| counters.add(new StringUtil.FastWordCounter());
|
| counters.add(new StringUtil.LetterWordCounter());
|
| counters.add(new StringUtil.FullWordCounter());
|
| @@ -39,7 +42,7 @@ public class StringUtilTest extends JsTestCase {
|
| }
|
|
|
| public void testLetterWordCounter() {
|
| - List<StringUtil.WordCounter> counters = new ArrayList();
|
| + List<StringUtil.WordCounter> counters = new ArrayList<WordCounter>();
|
| counters.add(new StringUtil.LetterWordCounter());
|
| counters.add(new StringUtil.FullWordCounter());
|
|
|
|
|