spelling corrections

Former-commit-id: f1589557d0f3aa8fc7e5efbc137b248580d72fae
This commit is contained in:
Jeremy Long
2014-04-21 20:31:26 -04:00
parent 2c8b408bfb
commit e5a4145e37
3 changed files with 5 additions and 5 deletions

View File

@@ -245,7 +245,7 @@ public class AssemblyAnalyzer extends AbstractFileTypeAnalyzer {
} }
} catch (Throwable e) { } catch (Throwable e) {
LOG.warning("An error occurred with the .NET AssemblyAnalyzer; " LOG.warning("An error occurred with the .NET AssemblyAnalyzer; "
+ "this can be ignored unless you are scanning .NET dlls. Please see the log for more details."); + "this can be ignored unless you are scanning .NET DLLs. Please see the log for more details.");
LOG.log(Level.FINE, "Could not execute GrokAssembly {0}", e.getMessage()); LOG.log(Level.FINE, "Could not execute GrokAssembly {0}", e.getMessage());
throw new AnalysisException("An error occurred with the .NET AssemblyAnalyzer", e); throw new AnalysisException("An error occurred with the .NET AssemblyAnalyzer", e);
} finally { } finally {

View File

@@ -341,7 +341,7 @@ public class DependencyBundlingAnalyzer extends AbstractAnalyzer implements Anal
* be shorter: * be shorter:
* axis2-saaj-1.4.1.jar * axis2-saaj-1.4.1.jar
* axis2-1.4.1.jar <----- * axis2-1.4.1.jar <-----
* axis2-kernal-1.4.1.jar * axis2-kernel-1.4.1.jar
*/ */
returnVal = leftName.length() <= rightName.length(); returnVal = leftName.length() <= rightName.length();
} }

View File

@@ -56,12 +56,12 @@ public class MavenNamespaceFilter extends XMLFilterImpl {
* @param uri the uri * @param uri the uri
* @param localName the localName * @param localName the localName
* @param qName the qualified name * @param qName the qualified name
* @param atts the attributes * @param attributes the attributes
* @throws SAXException thrown if there is a SAXException * @throws SAXException thrown if there is a SAXException
*/ */
@Override @Override
public void startElement(String uri, String localName, String qName, Attributes atts) throws SAXException { public void startElement(String uri, String localName, String qName, Attributes attributes) throws SAXException {
super.startElement(NAMESPACE, localName, qName, atts); super.startElement(NAMESPACE, localName, qName, attributes);
} }
/** /**