PluginIT: Fix ErrorProne warning

Constant field declarations should use the immutable type (such as
ImmutableList) instead of the general collection interface type (such as
List).

Change-Id: I1d9fa036801bc644683204405a62d3a99ca16a5d
Signed-off-by: Edwin Kempin <ekempin@google.com>
This commit is contained in:
Edwin Kempin
2017-10-04 16:48:32 +02:00
parent 33b527faf0
commit e7b25fe048

View File

@@ -46,7 +46,7 @@ public class PluginIT extends AbstractDaemonTest {
private static final RawInput HTML_PLUGIN_CONTENT =
RawInputUtil.create(HTML_PLUGIN.getBytes(UTF_8));
private static final List<String> PLUGINS =
private static final ImmutableList<String> PLUGINS =
ImmutableList.of(
"plugin-a.js", "plugin-b.html", "plugin-c.js", "plugin-d.html", "plugin_e.js");