Remove unused imports in o.e.m.a.r.c.ClusterInfoRenderer

Original commit: elastic/x-pack-elasticsearch@dcb63514cc
This commit is contained in:
Jason Tedor 2015-10-04 16:42:02 -04:00
parent cae3efaa49
commit c9c02c6a90
1 changed files with 0 additions and 4 deletions

View File

@ -5,7 +5,6 @@
*/
package org.elasticsearch.marvel.agent.renderer.cluster;
import org.elasticsearch.ElasticsearchException;
import org.elasticsearch.action.admin.cluster.stats.ClusterStatsResponse;
import org.elasticsearch.common.hash.MessageDigests;
import org.elasticsearch.common.xcontent.ToXContent;
@ -16,10 +15,7 @@ import org.elasticsearch.marvel.agent.collector.cluster.ClusterInfoMarvelDoc;
import org.elasticsearch.marvel.agent.renderer.AbstractRenderer;
import java.io.IOException;
import java.io.UnsupportedEncodingException;
import java.nio.charset.StandardCharsets;
import java.security.MessageDigest;
import java.security.NoSuchAlgorithmException;
import java.util.List;
public class ClusterInfoRenderer extends AbstractRenderer<ClusterInfoMarvelDoc> {