Remove unnecessary exception for engine constructor

The internal engine constructor declares a checked engine exception yet
this constructor does not actually throw this exception. This commit
removes this declaration from the internal engine constructor.

Relates #27022
This commit is contained in:
Jason Tedor 2017-10-16 10:17:37 -04:00 committed by GitHub
parent 70668dddf3
commit 3664ede9b5
1 changed files with 1 additions and 1 deletions

View File

@ -144,7 +144,7 @@ public class InternalEngine extends Engine {
@Nullable
private final String historyUUID;
public InternalEngine(EngineConfig engineConfig) throws EngineException {
public InternalEngine(EngineConfig engineConfig) {
super(engineConfig);
openMode = engineConfig.getOpenMode();
if (engineConfig.isAutoGeneratedIDsOptimizationEnabled() == false) {