Skip to content

Commit

Permalink
Fix some JavaDoc warnings.
Browse files Browse the repository at this point in the history
  • Loading branch information
uhafner committed Dec 14, 2021
1 parent f424884 commit 06f51e6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,11 @@
* collect a statistical summary for all containing commits. This includes the commits count, the changed files count,
* and the added and deleted lines in those commits.
* </p>
*
* <p>
* Additionally, the classes in this package will collect commit statistics for all repository files in the style of
* the book "Code as a Crime Scene":
* </p>
* <ul>
* <li> commits count </li>
* <li> different authors count </li>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
*
* @author Ullrich Hafner
*/
@SuppressWarnings("checkstyle:LambdaBodyLength")
public class DiffsCollectorITest extends GitITest {
private static final String MOVED_FILE = "moved";
private static final String AUTHOR = "author";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,6 @@ void shouldFillModel() {

Descriptor descriptor = new Descriptor(jenkins, model);


FreeStyleProject project = mock(FreeStyleProject.class);
assertThat(descriptor.doFillReferenceJobItems(project)).isEqualTo(new ComboBoxModel());
verifyNoInteractions(model);
Expand Down

0 comments on commit 06f51e6

Please sign in to comment.