File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed
src/test/java/org/apache/maven/plugins/javadoc Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -118,8 +118,7 @@ public void testParseJavadocVersion() {
118118 version = System .lineSeparator () + "java full version \" 1.5.0_07-164\" " ;
119119 assertEquals ("1.5.0" , JavadocUtil .extractJavadocVersion (version ));
120120
121- version = System .lineSeparator () + "java full version \" 1.5.0_07-164\" "
122- + System .lineSeparator ();
121+ version = System .lineSeparator () + "java full version \" 1.5.0_07-164\" " + System .lineSeparator ();
123122 assertEquals ("1.5.0" , JavadocUtil .extractJavadocVersion (version ));
124123
125124 version = "java full" + System .lineSeparator () + " version \" 1.5.0_07-164\" " ;
@@ -677,7 +676,7 @@ public void testQuotedArgument() {
677676 assertEquals ("'org.apache.uima.analysis_component:org.apache.uima.analysis_engine'" , arg );
678677 }
679678
680- public void testToList () {
679+ public void testToList () {
681680 String value = " *.internal:org.acme.exclude1.*:\n org.acme.exclude2\n " ;
682681 List <String > values = JavadocUtil .toList (value );
683682 assertThat (values ).containsExactly ("*.internal" , "org.acme.exclude1.*" , "org.acme.exclude2" );
You can’t perform that action at this time.
0 commit comments