Skip to content

Commit 6c3cd2e

Browse files
elharoplamentotev
authored andcommitted
remove incorrect JavaDoc comments
@hboutemy You can't inline from an interface since there's no implementation to replace it with.
1 parent 9768aa0 commit 6c3cd2e

File tree

1 file changed

+6
-22
lines changed

1 file changed

+6
-22
lines changed

src/main/java/org/codehaus/plexus/archiver/Archiver.java

Lines changed: 6 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -76,8 +76,6 @@ void createArchive()
7676

7777
/**
7878
* Obsolete, use {@link #addFileSet(FileSet)}.
79-
* You can use "inline" of this method in your
80-
* IDE to get the proper implementation for this release.
8179
*
8280
* @deprecated Will go away in next major version
8381
*/
@@ -87,8 +85,6 @@ void addDirectory( @Nonnull File directory )
8785

8886
/**
8987
* Obsolete, use {@link #addFileSet(FileSet)}.
90-
* You can use "inline" of this method in your
91-
* IDE to get the proper implementation for this release.
9288
*
9389
* @deprecated Will go away in next major version
9490
*/
@@ -98,8 +94,6 @@ void addDirectory( @Nonnull File directory, String prefix )
9894

9995
/**
10096
* Obsolete, use {@link #addFileSet(FileSet)}.
101-
* You can use "inline" of this method in your
102-
* IDE to get the proper implementation for this release.
10397
*
10498
* @deprecated Will go away in next major version
10599
*/
@@ -109,8 +103,6 @@ void addDirectory( @Nonnull File directory, String[] includes, String[] excludes
109103

110104
/**
111105
* Obsolete, use {@link #addFileSet(FileSet)}.
112-
* You can use "inline" of this method in your
113-
* IDE to get the proper implementation for this release.
114106
*
115107
* @deprecated Will go away in next major version
116108
*/
@@ -122,7 +114,7 @@ void addDirectory( @Nonnull File directory, String prefix, String[] includes, St
122114
* Adds the given file set to the archive. This method is basically obsoleting {@link #addDirectory(File)},
123115
* {@link #addDirectory(File, String)}, {@link #addDirectory(File, String[], String[])}, and
124116
* {@link #addDirectory(File, String, String[], String[])}. However, as these methods are in widespread use, they
125-
* cannot easily be made deprecated.
117+
* cannot easily be deprecated.
126118
*
127119
* @throws ArchiverException
128120
* Adding the file set failed.
@@ -145,8 +137,6 @@ void addFile( @Nonnull File inputFile, @Nonnull String destFileName, int permiss
145137

146138
/**
147139
* Obsolete, use {@link #addArchivedFileSet(ArchivedFileSet)}.
148-
* You can use "inline" of this method in your
149-
* IDE to get the proper implementation for this release.
150140
*
151141
* @deprecated Will go away in next major version
152142
*/
@@ -155,8 +145,6 @@ void addArchivedFileSet( @Nonnull File archiveFile )
155145

156146
/**
157147
* Obsolete, use {@link #addArchivedFileSet(ArchivedFileSet)}.
158-
* You can use "inline" of this method in your
159-
* IDE to get the proper implementation for this release.
160148
*
161149
* @deprecated Will go away in next major version
162150
*/
@@ -166,8 +154,6 @@ void addArchivedFileSet( @Nonnull File archiveFile, String prefix )
166154

167155
/**
168156
* Obsolete, use {@link #addArchivedFileSet(ArchivedFileSet)}.
169-
* You can use "inline" of this method in your
170-
* IDE to get the proper implementation for this release.
171157
*
172158
* @deprecated Will go away in next major version
173159
*/
@@ -177,8 +163,6 @@ void addArchivedFileSet( File archiveFile, String[] includes, String[] excludes
177163

178164
/**
179165
* Obsolete, use {@link #addArchivedFileSet(ArchivedFileSet)}.
180-
* You can use "inline" of this method in your
181-
* IDE to get the proper implementation for this release.
182166
*
183167
* @deprecated Will go away in next major version
184168
*/
@@ -190,7 +174,7 @@ void addArchivedFileSet( @Nonnull File archiveFile, String prefix, String[] incl
190174
* Adds the given archive file set to the archive. This method is basically obsoleting
191175
* {@link #addArchivedFileSet(File)}, {@link #addArchivedFileSet(File, String[], String[])}, and
192176
* {@link #addArchivedFileSet(File, String, String[], String[])}. However, as these methods are in widespread use,
193-
* they cannot easily be made deprecated.
177+
* they cannot easily be deprecated.
194178
*
195179
* Stream transformers are supported on this method
196180
*
@@ -203,7 +187,7 @@ void addArchivedFileSet( ArchivedFileSet fileSet )
203187
* Adds the given archive file set to the archive. This method is basically obsoleting
204188
* {@link #addArchivedFileSet(File)}, {@link #addArchivedFileSet(File, String[], String[])}, and
205189
* {@link #addArchivedFileSet(File, String, String[], String[])}. However, as these methods are in widespread use,
206-
* they cannot easily be made deprecated.
190+
* they cannot easily be deprecated.
207191
*
208192
* @param charset the encoding to use, particularly useful to specific non-standard filename encodings
209193
* for some kinds of archives (for instance zip files)
@@ -314,7 +298,7 @@ ResourceIterator getResources()
314298
* uptodate checks.
315299
* </p>
316300
*
317-
* @return True, if the target archive should always be created; false otherwise
301+
* @return true if the target archive should always be created; false otherwise
318302
*
319303
* @see #setForced(boolean)
320304
* @see #isSupportingForced()
@@ -337,7 +321,7 @@ ResourceIterator getResources()
337321
* </p>
338322
*
339323
* @param forced
340-
* True, if the target archive should always be created; false otherwise
324+
* true, if the target archive should always be created; false otherwise
341325
*
342326
* @see #isForced()
343327
* @see #isSupportingForced()
@@ -347,7 +331,7 @@ ResourceIterator getResources()
347331
/**
348332
* Returns, whether the archive supports uptodate checks. If so, you may set {@link #setForced(boolean)} to true.
349333
*
350-
* @return True, if the archiver does support uptodate checks, false otherwise
334+
* @return true, if the archiver does support uptodate checks, false otherwise
351335
*
352336
* @see #setForced(boolean)
353337
* @see #isForced()

0 commit comments

Comments
 (0)