some nits (#1279) · apache/maven-assembly-plugin@04cbbb3 (original) (raw)

File tree

Original file line number Diff line number Diff line change
@@ -43,8 +43,7 @@ public interface AssemblyArchiverPhase {
43 43 * the assembly process.
44 44 * @throws org.apache.maven.plugins.assembly.archive.ArchiveCreationException in case of an archive
45 45 * creation error.
46 - * @throws org.apache.maven.plugins.assembly.format.AssemblyFormattingException in case of a assembly
47 - * formatting exception.
46 + * @throws org.apache.maven.plugins.assembly.format.AssemblyFormattingException in case of an assembly formatting exception.
48 47 * @throws org.apache.maven.plugins.assembly.InvalidAssemblerConfigurationException in case of an invalid
49 48 * assembler configuration.
50 49 */
Original file line number Diff line number Diff line change
@@ -284,7 +284,7 @@ public abstract class AbstractAssemblyMojo extends AbstractMojo implements Assem
284 284 private boolean attach;
285 285
286 286 /**
287 - * Indicates if zip archives (jar,zip etc) being added to the assembly should be compressed again. Compressing again
287 + * Indicates if zip archives (jar, zip, etc.) being added to the assembly should be compressed again. Compressing again
288 288 * can result in smaller archive size, but gives noticeably longer execution time.
289 289 *
290 290 * @since 2.4
@@ -314,7 +314,7 @@ public abstract class AbstractAssemblyMojo extends AbstractMojo implements Assem
314 314
315 315 /**
316 316 * Allows additional configuration options that are specific to a particular type of archive format. This is
317 - * intended to capture an XML configuration that will be used to reflectively setup the options on the archiver
317 + * intended to capture an XML configuration that will be used to reflectively set up the options on the archiver
318 318 * instance.
To see the possible options for archiver configuration visit the
319 319 *
320 320 * Plexus Archiver Documentation
For instance, to direct an assembly with the "ear" format to use a
Original file line number Diff line number Diff line change
@@ -44,7 +44,7 @@ private LineEndingsUtils() {
44 44 *
45 45 * @param source The source file, not null
46 46 * @param dest The destination file, not null
47 - * @param lineEndings This is the result of the getLineEndingChars(..) method in this utility class; the actual
47 + * @param lineEndings This is the result of the getLineEndingChars() method in this utility class; the actual
48 48 * line-ending characters, not null.
49 49 * @param atEndOfFile The end-of-file line ending, if true then the resulting file will have a new line at the end
50 50 * even if the input didn't have one, if false then the resulting file will have no new line at
@@ -114,7 +114,7 @@ private static BufferedWriter getBufferedWriter(File dest, String encoding) thro
114 114 * Converts the line endings of a file, writing a new file. The encoding of reading and writing can be specified.
115 115 *
116 116 * @param in The source reader
117 - * @param lineEndings This is the result of the getLineEndingChars(..) method in this utility class; the actual
117 + * @param lineEndings This is the result of the getLineEndingChars() method in this utility class; the actual
118 118 * line-ending characters, not null.
119 119 * @return an input stream that enforces a specifi line ending style
120 120 */