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:
@@ -46,7 +46,7 @@ public class PluginIT extends AbstractDaemonTest {
|
|||||||
private static final RawInput HTML_PLUGIN_CONTENT =
|
private static final RawInput HTML_PLUGIN_CONTENT =
|
||||||
RawInputUtil.create(HTML_PLUGIN.getBytes(UTF_8));
|
RawInputUtil.create(HTML_PLUGIN.getBytes(UTF_8));
|
||||||
|
|
||||||
private static final List<String> PLUGINS =
|
private static final ImmutableList<String> PLUGINS =
|
||||||
ImmutableList.of(
|
ImmutableList.of(
|
||||||
"plugin-a.js", "plugin-b.html", "plugin-c.js", "plugin-d.html", "plugin_e.js");
|
"plugin-a.js", "plugin-b.html", "plugin-c.js", "plugin-d.html", "plugin_e.js");
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user