Skip to content

Commit

Permalink
[checkstyle] Mark fields private
Browse files Browse the repository at this point in the history
  • Loading branch information
hazendaz committed Sep 22, 2024
1 parent 4a24269 commit 643f91b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/test/java/au/com/acegi/xmlformat/FormatUtilTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ public final class FormatUtilTest {
private static final String UNFORMATTED_XML = "<xml> <hello/> </xml>";

@TempDir
public File tmp;
private File tmp;

@Test
public void formattedWillNotChange() throws DocumentException, IOException {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ public class XmlCheckPluginTest {
private static final String TO_CHG_TXT = "<xml> <hello/> </xml>";

@TempDir
public File tmp;
private File tmp;

@SuppressWarnings("PMD.ProperLogger")
private Log log;
Expand Down

0 comments on commit 643f91b

Please sign in to comment.