Skip to content

Commit 5536cf6

Browse files
committed
Missing @SInCE markers
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/codec/trunk@1309094 13f79535-47bb-0310-9956-ffa450edef68
1 parent 9efad96 commit 5536cf6

3 files changed

Lines changed: 5 additions & 0 deletions

File tree

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@ protected BaseNCodecInputStream(InputStream in, BaseNCodec baseNCodec, boolean d
5151
*
5252
* @return <code>0</code> if the {@link InputStream} has reached <code>EOF</code>,
5353
* <code>1</code> otherwise
54+
* @since 1.7
5455
*/
5556
@Override
5657
public int available() throws IOException {
@@ -182,6 +183,7 @@ public synchronized void reset() throws IOException {
182183
* {@inheritDoc}
183184
*
184185
* @throws IllegalArgumentException if the provided skip length is negative
186+
* @since 1.7
185187
*/
186188
@Override
187189
public long skip(long n) throws IOException {

src/main/java/org/apache/commons/codec/language/bm/BeiderMorseEncoder.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -171,6 +171,7 @@ public void setRuleType(RuleType ruleType) {
171171
*
172172
* @param maxPhonemes
173173
* the maximum number of phonemes returned by the engine
174+
* @since 1.7
174175
*/
175176
public void setMaxPhonemes(int maxPhonemes) {
176177
this.engine = new PhoneticEngine(this.engine.getNameType(),

src/main/java/org/apache/commons/codec/language/bm/PhoneticEngine.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -335,6 +335,7 @@ public PhoneticEngine(NameType nameType, RuleType ruleType, boolean concat) {
335335
* if it will concatenate multiple encodings
336336
* @param maxPhonemes
337337
* the maximum number of phonemes that will be handled
338+
* @since 1.7
338339
*/
339340
public PhoneticEngine(NameType nameType, RuleType ruleType, boolean concat, int maxPhonemes) {
340341
if (ruleType == RuleType.RULES) {
@@ -545,6 +546,7 @@ public boolean isConcat() {
545546
* Gets the maximum number of phonemes the engine will calculate for a given input.
546547
*
547548
* @return the maximum number of phonemes
549+
* @since 1.7
548550
*/
549551
public int getMaxPhonemes() {
550552
return this.maxPhonemes;

0 commit comments

Comments
 (0)