Skip to content

Commit c32ee91

Browse files
committed
Minor style fixes
1 parent ff84463 commit c32ee91

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

src/main/java/org/infernus/idea/checkstyle/toolwindow/GroupTreeInfo.java

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,15 @@ abstract class GroupTreeInfo extends ResultTreeNode {
1515
/**
1616
* Construct a group node.
1717
*
18-
* @param name the name of the group.
19-
* @param groupId the ID used as part of message lookup.
20-
* @param icon the icon of the group.
18+
* @param name the name of the group.
19+
* @param groupId the ID used as part of message lookup.
20+
* @param icon the icon of the group.
2121
* @param problemCount the number of problems in the group.
2222
*/
23-
public GroupTreeInfo(@NotNull final String name,
24-
@NotNull final String groupId,
25-
@NotNull final Icon icon,
26-
final int problemCount) {
23+
GroupTreeInfo(@NotNull final String name,
24+
@NotNull final String groupId,
25+
@NotNull final Icon icon,
26+
final int problemCount) {
2727
super(CheckStyleBundle.message("plugin.results.scan-" + groupId + "-result", name, problemCount));
2828

2929
this.name = name;

src/test/java/org/infernus/idea/checkstyle/checker/CachedCheckerTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ void destroyDelegatesToTheWrappedChecker() {
6060
verify(checkStyleChecker).destroy();
6161
}
6262

63-
private void backdateTimestamp(CachedChecker cachedChecker, long millisInThePast) throws Exception {
63+
private void backdateTimestamp(final CachedChecker cachedChecker, final long millisInThePast) throws Exception {
6464
Field field = CachedChecker.class.getDeclaredField("timeStamp");
6565
field.setAccessible(true);
6666
field.set(cachedChecker, System.currentTimeMillis() - millisInThePast);

0 commit comments

Comments
 (0)