Skip to content

Commit 2b1e98f

Browse files
committed
Change recently added method to package private to avoid a Clirr error. Fix typos.
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/codec/trunk@1636435 13f79535-47bb-0310-9956-ffa450edef68
1 parent 2cb32b8 commit 2b1e98f

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,9 +51,9 @@
5151
* @version $Id$
5252
*/
5353
public class Languages {
54-
// Iimplementation note: This class is divided into two sections. The first part is a static factory interface that
54+
// Implementation note: This class is divided into two sections. The first part is a static factory interface that
5555
// exposes org/apache/commons/codec/language/bm/%s_languages.txt for %s in NameType.* as a list of supported
56-
// languages, and a second part that provides instance methods for accessing this set fo supported languages.
56+
// languages, and a second part that provides instance methods for accessing this set for supported languages.
5757

5858
/**
5959
* A set of languages.
@@ -74,7 +74,7 @@ public static LanguageSet from(final Set<String> langs) {
7474

7575
public abstract LanguageSet restrictTo(LanguageSet other);
7676

77-
public abstract LanguageSet merge(LanguageSet other);
77+
abstract LanguageSet merge(LanguageSet other);
7878
}
7979

8080
/**

0 commit comments

Comments
 (0)