Skip to content

Commit c649d3d

Browse files
committed
Javadoc/Comments: Remove extra "whitespace"
1 parent eddaa31 commit c649d3d

32 files changed

Lines changed: 0 additions & 32 deletions

src/main/java/org/apache/commons/io/FileCleaningTracker.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,6 @@
3939
* longer needed. This is done by invoking the method
4040
* {@link #exitWhenFinished}, typically in
4141
* {@code javax.servlet.ServletContextListener.contextDestroyed(javax.servlet.ServletContextEvent)} or similar.
42-
*
4342
*/
4443
public class FileCleaningTracker {
4544

src/main/java/org/apache/commons/io/ThreadMonitor.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@
3636
* // timed amount was reached
3737
* }
3838
* </pre>
39-
*
4039
*/
4140
class ThreadMonitor implements Runnable {
4241

src/main/java/org/apache/commons/io/input/NullInputStream.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,6 @@
6363
* </pre>
6464
*
6565
* @since 1.3
66-
*
6766
*/
6867
public class NullInputStream extends InputStream {
6968

src/main/java/org/apache/commons/io/input/SwappedDataInputStream.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@
3131
* <p>
3232
* <b>Origin of code: </b>Avalon Excalibur (IO)
3333
* </p>
34-
*
3534
*/
3635
public class SwappedDataInputStream extends ProxyInputStream implements DataInput {
3736

src/main/java/org/apache/commons/io/input/UncheckedFilterInputStream.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1414
* See the License for the specific language governing permissions and
1515
* limitations under the License.
16-
*
1716
*/
1817

1918
package org.apache.commons.io.input;

src/main/java/org/apache/commons/io/output/CountingOutputStream.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@
2525
* A typical use case would be during debugging, to ensure that data is being
2626
* written as expected.
2727
* </p>
28-
*
2928
*/
3029
public class CountingOutputStream extends ProxyOutputStream {
3130

src/main/java/org/apache/commons/io/output/DemuxOutputStream.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@
2323

2424
/**
2525
* Forwards data to a stream that has been associated with this thread.
26-
*
2726
*/
2827
public class DemuxOutputStream extends OutputStream {
2928
private final InheritableThreadLocal<OutputStream> outputStreamThreadLocal = new InheritableThreadLocal<>();

src/main/java/org/apache/commons/io/output/ProxyOutputStream.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@
3131
* See the protected methods for ways in which a subclass can easily decorate
3232
* a stream with custom pre-, post- or error processing functionality.
3333
* </p>
34-
*
3534
*/
3635
public class ProxyOutputStream extends FilterOutputStream {
3736

src/test/java/org/apache/commons/io/DirectoryWalkerTest.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,6 @@
3838
* This is used to test DirectoryWalker for correctness.
3939
*
4040
* @see DirectoryWalker
41-
*
4241
*/
4342
public class DirectoryWalkerTest {
4443

src/test/java/org/apache/commons/io/EndianUtilsTest.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@
2727
import org.junit.jupiter.api.Test;
2828

2929
/**
30-
*
3130
*/
3231
public class EndianUtilsTest {
3332

0 commit comments

Comments
 (0)