mirror of https://github.com/apache/lucene.git
remove redundant throws FacetException (as it's not really thrown)
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1302271 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
c4f72f61ac
commit
bfa06a9e30
|
@ -114,10 +114,8 @@ public class CategoryContainer implements Iterable<CategoryAttribute>, Serializa
|
|||
* The {@link CategoryAttribute} to add.
|
||||
* @return The {@link CategoryAttribute} of the category (could be different
|
||||
* from the one provided).
|
||||
* @throws FacetException
|
||||
*/
|
||||
public CategoryAttribute addCategory(CategoryAttribute categoryAttribute)
|
||||
throws FacetException {
|
||||
public CategoryAttribute addCategory(CategoryAttribute categoryAttribute) {
|
||||
CategoryAttribute ca = mapCategoryAttribute(categoryAttribute
|
||||
.getCategoryPath());
|
||||
Set<Class<? extends CategoryProperty>> propertyClasses = categoryAttribute
|
||||
|
@ -166,15 +164,8 @@ public class CategoryContainer implements Iterable<CategoryAttribute>, Serializa
|
|||
map.clear();
|
||||
}
|
||||
|
||||
/**
|
||||
* Add the categories from another {@link CategoryContainer} to this one.
|
||||
*
|
||||
* @param other
|
||||
* The {@link CategoryContainer} to take categories from.
|
||||
* @throws FacetException
|
||||
* If any prohibited merge of category properties is attempted.
|
||||
*/
|
||||
public void merge(CategoryContainer other) throws FacetException {
|
||||
/** Add the categories from another {@link CategoryContainer} to this one. */
|
||||
public void merge(CategoryContainer other) {
|
||||
for (CategoryAttribute categoryAttribute : other.map.values()) {
|
||||
addCategory(categoryAttribute);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue