-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #29 from sjudd/master
Un-escape XML when reading attributes.
- Loading branch information
Showing
5 changed files
with
128 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<checkstyle version="5.9"> | ||
<file name="/src/main/java/se/bjurr/violations/lib/example/MyClass.java"> | ||
<error line="11" column="10" severity="info" message="'Must have at least one statement.'" source="com.puppycrawl.tools.checkstyle.checks.blocks.EmptyBlockCheck"/> | ||
<error line="12" column="10" severity="info" message="Must have at least one "statement"." source="com.puppycrawl.tools.checkstyle.checks.blocks.EmptyBlockCheck"/> | ||
<error line="13" column="10" severity="info" message="one is < two" source="one.should.be.greater.than.two" /> | ||
<error line="14" column="10" severity="info" message="two is > one" source="two.should.be.less.than.one"/> | ||
<error line="15" column="10" severity="info" message="one & one is two" source="one.and.one.should.be.three"/> | ||
</file> | ||
</checkstyle> |