style: remove unused LOGGER for PullStreamDecoder

This commit is contained in:
Connor Tumbleson 2019-01-09 17:11:32 -05:00
parent 6bb73b509d
commit c1f50a2810

View File

@ -19,7 +19,6 @@ package brut.androlib.res.decoder;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.util.logging.Logger;
import brut.androlib.err.AXmlDecodingException;
import brut.androlib.err.RawXmlEncounteredException;
@ -157,6 +156,4 @@ public class XmlPullStreamDecoder implements ResStreamDecoder {
private final XmlPullParser mParser;
private final ExtXmlSerializer mSerial;
private final static Logger LOGGER = Logger.getLogger(XmlPullStreamDecoder.class.getName());
}