File tree Expand file tree Collapse file tree 2 files changed +8
-8
lines changed
main/java/org/infernus/idea/checkstyle/toolwindow
test/java/org/infernus/idea/checkstyle/checker Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Original file line number Diff line number Diff 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 ;
Original file line number Diff line number Diff 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 );
You can’t perform that action at this time.
0 commit comments