Skip to content

Commit d4947cc

Browse files
committed
TIKA-4397: remove unused code, as suggested by syedamisbahh (also applies also to previous commits of this issue, except deprecation)
1 parent ec64a4c commit d4947cc

File tree

1 file changed

+3
-10
lines changed

1 file changed

+3
-10
lines changed

tika-core/src/main/java/org/apache/tika/config/TikaConfig.java

+3-10
Original file line numberDiff line numberDiff line change
@@ -703,16 +703,9 @@ CT loadOverall(Element element, MimeTypes mimeTypes, ServiceLoader loader)
703703
return (CT) single;
704704
}
705705
} else if (!supportsComposite()) {
706-
// No composite support, just return the first one
707-
if (loaded.size() == 1) {
708-
return (CT) loaded.get(0);
709-
} else if (loaded.size() > 1) {
710-
throw new TikaConfigException(
711-
"Composite not supported for " + getParentTagName() +
712-
". Must specify only one child!");
713-
} else {
714-
//throw exception if empty?
715-
}
706+
throw new TikaConfigException(
707+
"Composite not supported for " + getParentTagName() +
708+
". Must specify only one child!");
716709
}
717710
// Wrap the defined parsers/detectors up in a Composite
718711
return createComposite(loaded, mimeTypes, loader);

0 commit comments

Comments
 (0)