[cleanup] a small fix - add missing final

Original commit: elastic/x-pack-elasticsearch@1d4e708e47
This commit is contained in:
uboness 2015-01-25 06:33:14 +01:00
parent b61d601227
commit 4e9c7bbf68
1 changed files with 1 additions and 1 deletions

View File

@ -40,7 +40,7 @@ public interface Permission {
static class Global implements Permission { static class Global implements Permission {
public static Global NONE = new Global(Cluster.Core.NONE, Indices.Core.NONE); public static final Global NONE = new Global(Cluster.Core.NONE, Indices.Core.NONE);
private final Cluster cluster; private final Cluster cluster;
private final Indices indices; private final Indices indices;