Use immutable type for static declaration

Change-Id: Idf1d165be9ca6e873572dc2e33f4d768122b743d
This commit is contained in:
Patrick Hiesel
2017-03-03 08:32:00 +01:00
parent 4b06775821
commit 996c0d7b34

View File

@@ -24,7 +24,7 @@ import java.util.List;
import org.junit.Test;
public class RegexListSearcherTest {
private static final List<String> EMPTY = ImmutableList.of();
private static final ImmutableList<String> EMPTY = ImmutableList.of();
@Test
public void emptyList() {