Skip to content
This repository has been archived by the owner on Apr 6, 2022. It is now read-only.

Commit

Permalink
[FIXED JENKINS-20874] Fixed formatting.
Browse files Browse the repository at this point in the history
  • Loading branch information
uhafner committed May 3, 2014
1 parent eefcb73 commit c8f4ffc
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 9 deletions.
Expand Up @@ -2,20 +2,17 @@

import java.io.IOException;
import java.io.InputStream;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Locale;
import java.util.Map;
import java.util.*;
import java.util.logging.Level;
import java.util.logging.Logger;

import hudson.plugins.analysis.util.SaxSetup;
import org.apache.commons.digester3.Digester;
import org.apache.commons.io.IOUtils;
import org.apache.commons.lang.StringUtils;
import org.xml.sax.SAXException;

import hudson.plugins.analysis.util.SaxSetup;

/**
* Parses the FindBugs pattern descriptions and provides access to these HTML messages.
*
Expand All @@ -40,8 +37,10 @@ private static FindBugsMessages initializeSingleton() {
SaxSetup sax = new SaxSetup();
try {
res.initialize();
} catch(Exception e) {
Logger.getLogger(FindBugsMessages.class.getName()).log(Level.WARNING, "FindBugsMessages initializeSingleton failed", e);
}
catch (Exception exception) {
Logger.getLogger(FindBugsMessages.class.getName()).log(Level.WARNING,
"FindBugsMessages initializeSingleton failed", exception);
}
finally {
sax.cleanup();
Expand Down
Expand Up @@ -6,7 +6,6 @@
import org.apache.commons.codec.binary.Hex;

import com.thoughtworks.xstream.XStream;
import com.thoughtworks.xstream.converters.Converter;
import com.thoughtworks.xstream.converters.basic.AbstractSingleValueConverter;

/**
Expand Down

0 comments on commit c8f4ffc

Please sign in to comment.