Skip to content

Commit 23a94ce

Browse files
committed
Javadoc
1 parent 8f2a08e commit 23a94ce

4 files changed

Lines changed: 8 additions & 8 deletions

File tree

src/main/java/org/apache/commons/codec/binary/AbstractBaseNCodecStreamBuilder.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@
2222
/**
2323
* Builds input and output stream instances in {@link BaseNCodec} format.
2424
*
25-
* @param <T> the stream type to build.
25+
* @param <T> The stream type to build.
2626
* @param <C> A {@link BaseNCodec} subclass.
27-
* @param <B> the builder subclass.
27+
* @param <B> The builder subclass.
2828
* @since 1.20.0
2929
*/
3030
public abstract class AbstractBaseNCodecStreamBuilder<T, C extends BaseNCodec, B extends AbstractBaseNCodecStreamBuilder<T, C, B>> implements Supplier<T> {

src/main/java/org/apache/commons/codec/binary/BaseNCodec.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,8 @@ public abstract class BaseNCodec implements BinaryEncoder, BinaryDecoder {
5252
/**
5353
* Builds {@link Base64} instances.
5454
*
55-
* @param <T> the codec type to build.
56-
* @param <B> the codec builder subtype.
55+
* @param <T> The codec type to build.
56+
* @param <B> The codec builder subtype.
5757
* @since 1.17.0
5858
*/
5959
public abstract static class AbstractBuilder<T, B extends AbstractBuilder<T, B>> implements Supplier<T> {

src/main/java/org/apache/commons/codec/binary/BaseNCodecInputStream.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,9 +44,9 @@ public class BaseNCodecInputStream<C extends BaseNCodec, T extends BaseNCodecInp
4444
/**
4545
* Builds input stream instances in {@link BaseNCodec} format.
4646
*
47-
* @param <T> the input stream type to build.
47+
* @param <T> The input stream type to build.
4848
* @param <C> A {@link BaseNCodec} subclass.
49-
* @param <B> the builder subclass.
49+
* @param <B> The builder subclass.
5050
* @since 1.20.0
5151
*/
5252
public abstract static class AbstracBuilder<T, C extends BaseNCodec, B extends AbstractBaseNCodecStreamBuilder<T, C, B>>

src/main/java/org/apache/commons/codec/binary/BaseNCodecOutputStream.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,9 +49,9 @@ public class BaseNCodecOutputStream<C extends BaseNCodec, T extends BaseNCodecOu
4949
/**
5050
* Builds output stream instances in {@link BaseNCodec} format.
5151
*
52-
* @param <T> the output stream type to build.
52+
* @param <T> The output stream type to build.
5353
* @param <C> A {@link BaseNCodec} subclass.
54-
* @param <B> the builder subclass.
54+
* @param <B> The builder subclass.
5555
* @since 1.20.0
5656
*/
5757
public abstract static class AbstractBuilder<T, C extends BaseNCodec, B extends AbstractBuilder<T, C, B>>

0 commit comments

Comments
 (0)