Skip to content
This repository has been archived by the owner on Jan 16, 2021. It is now read-only.

Commit

Permalink
[FIXED JENKINS-16645] Fix constant value for 'informational' severity.
Browse files Browse the repository at this point in the history
  • Loading branch information
orrc committed Feb 10, 2013
1 parent 2265dcd commit 8263e06
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Expand Up @@ -29,7 +29,7 @@ public class LintParser extends AbstractAnnotationParser {
private static final String SEVERITY_ERROR = "Error";

/** Severity constant value from {@link com.android.tools.lint.detector.api.Severity}. */
private static final String SEVERITY_INFORMATIONAL = "Informational";
private static final String SEVERITY_INFORMATIONAL = "Information";

private static final long serialVersionUID = 7110868408124058985L;

Expand Down
Expand Up @@ -25,7 +25,7 @@
<!-- Should be mapped to "LOW" priority -->
<issue
id="PxUsage"
severity="Informational"
severity="Information"
message="Avoid using &quot;px&quot; as units; use &quot;dp&quot; instead">
<location
file="res/layout/foo.xml"
Expand Down

0 comments on commit 8263e06

Please sign in to comment.